Zeroize tmp buffer in entropy_update()
diff --git a/library/entropy.c b/library/entropy.c
index caff22f..5a8321b 100644
--- a/library/entropy.c
+++ b/library/entropy.c
@@ -166,6 +166,8 @@
     sha256_update( &ctx->accumulator, p, use_len );
 #endif
 
+    polarssl_zeroize( tmp, sizeof( tmp ) );
+
     return( 0 );
 }