"git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "d31448dd24d47e7a72264efb9f4131c95b139422"
Commit 53735480 authored by Davis King's avatar Davis King
Browse files

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