Commit 53735480 authored by Davis King's avatar Davis King

Fixed double delete

parent 096ab3c8
......@@ -29,7 +29,7 @@ namespace dlib
catch (...)
{
if (headset) delete [] headset;
if (bodyset) delete [] headset;
if (bodyset) delete [] bodyset;
throw;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment