contrib/python-zstandard/c-ext/decompressor.c
changeset 30830 08fa3a76a080
parent 30435 b86a448a2965
child 30895 c32454d69b85
--- a/contrib/python-zstandard/c-ext/decompressor.c	Tue Jan 17 11:25:02 2017 -0800
+++ b/contrib/python-zstandard/c-ext/decompressor.c	Tue Jan 17 10:17:13 2017 -0800
@@ -165,6 +165,9 @@
 		return NULL;
 	}
 
+	/* Prevent free on uninitialized memory in finally. */
+	output.dst = NULL;
+
 	dstream = DStream_from_ZstdDecompressor(self);
 	if (!dstream) {
 		res = NULL;