Mismatching new[] / delete

This commit is contained in:
Jacob Baines 2013-03-24 22:45:31 -03:00
parent ec15d6f383
commit 1e1645e214

View File

@ -2871,7 +2871,7 @@ void HOGDescriptor::readALTModel(std::string modelfile)
detector.push_back((float)-linearbias); detector.push_back((float)-linearbias);
setSVMDetector(detector); setSVMDetector(detector);
delete linearwt; delete [] linearwt;
} else { } else {
throw Exception(); throw Exception();
} }