This commit is contained in:
Kovid Goyal 2018-09-07 11:37:33 +05:30
parent e3728942dc
commit b9a93b68c4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -32,7 +32,7 @@ serialize_string_tuple(PyObject *src) {
static inline void static inline void
free_string_tuple(char** data) { free_string_tuple(char** data) {
size_t i = 0; size_t i = 0;
while(data[i++]) free(data[i-1]); while(data[i]) free(data[i++]);
free(data); free(data);
} }