Fixed double delete

This commit is contained in:
Davis King 2017-03-18 13:00:16 -04:00
parent 096ab3c847
commit 537354805d

View File

@ -29,7 +29,7 @@ namespace dlib
catch (...)
{
if (headset) delete [] headset;
if (bodyset) delete [] headset;
if (bodyset) delete [] bodyset;
throw;
}
}