aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-10-03 11:27:56 +0000
committerdrh <drh@noemail.net>2013-10-03 11:27:56 +0000
commit582d47d27a2540564bbf0bd060de73d1dd413e35 (patch)
tree927c47b00ffd0d472e4d8653f164685e5182cb80 /src/tclsqlite.c
parent01f75f2d68a17d52db2aa7c966e2c687b9e75897 (diff)
downloadsqlite-582d47d27a2540564bbf0bd060de73d1dd413e35.tar.gz
sqlite-582d47d27a2540564bbf0bd060de73d1dd413e35.zip
Remove unnecessary memset() calls from test code.
FossilOrigin-Name: eec3187bc68ddebdbc2113f77c7f5cd32e9be61f
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index 42f7bcdc3..b8fdf23c4 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -3377,7 +3377,6 @@ static void MD5Final(unsigned char digest[16], MD5Context *ctx){
MD5Transform(ctx->buf, (uint32 *)ctx->in);
byteReverse((unsigned char *)ctx->buf, 4);
memcpy(digest, ctx->buf, 16);
- memset(ctx, 0, sizeof(ctx)); /* In case it is sensitive */
}
/*