Skip to content

Commit dffcfcb

Browse files
Update python-zstd.c
1 parent 8a7a53b commit dffcfcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python-zstd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ static PyObject *py_zstd_uncompress(PyObject* self, PyObject *args)
155155
Py_ssize_t source_size, ss, seek_frame;
156156
uint64_t dest_size, frame_size;
157157
char error = 0, streamed = 0;
158-
size_t cSize, processed;
158+
size_t cSize = 0, processed = 0;
159159

160160
#if PY_MAJOR_VERSION >= 3
161161
if (!PyArg_ParseTuple(args, "y#", &source, &source_size))

0 commit comments

Comments
 (0)