Browse Source

Fix memory leaks in error paths.

Jelmer Vernooij 15 năm trước cách đây
mục cha
commit
b9ed09fd39
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      dulwich/_pack.c

+ 3 - 0
dulwich/_pack.c

@@ -110,17 +110,20 @@ static PyObject *py_apply_delta(PyObject *self, PyObject *args)
             index += cmd;
 		} else {
 			PyErr_SetString(PyExc_ValueError, "Invalid opcode 0");
+			Py_DECREF(ret);
 			return NULL;
 		}
 	}
     
     if (index != delta_len) {
 		PyErr_SetString(PyExc_ValueError, "delta not empty");
+		Py_DECREF(ret);
 		return NULL;
 	}
 
 	if (dest_size != outindex) {
         PyErr_SetString(PyExc_ValueError, "dest size incorrect");
+		Py_DECREF(ret);
 		return NULL;
 	}