From e2b1051ab0640e9ab69f1a0b1618f77a3bc1a670 Mon Sep 17 00:00:00 2001 From: Manuel Guenther <manuel.guenther@idiap.ch> Date: Wed, 4 Feb 2015 19:15:40 +0100 Subject: [PATCH] Fixed memory leak in HDF5 copy constructor --- bob/io/base/hdf5.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bob/io/base/hdf5.cpp b/bob/io/base/hdf5.cpp index b68dce7..3144461 100644 --- a/bob/io/base/hdf5.cpp +++ b/bob/io/base/hdf5.cpp @@ -121,11 +121,12 @@ static int PyBobIoHDF5File_Init(PyBobIoHDF5FileObject* self, auto k_ = make_safe(k); if ( (kwds && PyDict_Contains(kwds, k)) || - (args && PyBobIoHDF5File_Check(PyTuple_GetItem(args, 0))) + (args && PyBobIoHDF5File_Check(PyTuple_GET_ITEM(args, 0))) ){ PyBobIoHDF5FileObject* other; if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&", kwlist2, &PyBobIoHDF5File_Converter, &other)) return -1; + auto other_ = make_safe(other); self->f = other->f; return 0; } -- GitLab