Commit 53735480 authored by Davis King's avatar Davis King

Fixed double delete

parent 096ab3c8
...@@ -29,7 +29,7 @@ namespace dlib ...@@ -29,7 +29,7 @@ namespace dlib
catch (...) catch (...)
{ {
if (headset) delete [] headset; if (headset) delete [] headset;
if (bodyset) delete [] headset; if (bodyset) delete [] bodyset;
throw; 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