Skip to content

Commit 5fcb198

Browse files
author
cameronrich
committed
removed diagnostic statement
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@223 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
1 parent af155d9 commit 5fcb198

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

crypto/crypto_misc.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,11 +350,8 @@ EXP_FUNC int STDCALL base64_decode(const char *in, int len,
350350
}
351351

352352
/* check that we don't go past the output buffer */
353-
if (outlen && z >= *outlen)
354-
{
355-
printf("Stuff %d, %d\n", z, *outlen);
353+
if (z >= *outlen)
356354
goto error;
357-
}
358355
}
359356

360357
if (y != 0)

0 commit comments

Comments
 (0)