Fix base16_decode; trashing the stack is rude.

svn:r2110
This commit is contained in:
Nick Mathewson
2004-07-22 21:41:50 +00:00
parent 1391eafe67
commit 7119345fbb
-1
View File
@@ -1479,7 +1479,6 @@ int base16_decode(char *dest, int destlen, const char *src, int srclen)
++dest;
src+=2;
}
*dest = '\0';
return 0;
}