Browse Source

Fix base16_decode; trashing the stack is rude.

svn:r2110
Nick Mathewson 21 years ago
parent
commit
7119345fbb
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/common/crypto.c

+ 0 - 1
src/common/crypto.c

@@ -1479,7 +1479,6 @@ int base16_decode(char *dest, int destlen, const char *src, int srclen)
     ++dest;
     src+=2;
   }
-  *dest = '\0';
   return 0;
 }