Commit a8afb139 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Gerrit Code Review
Browse files

Merge "Use delete[] on objects allocated with new[]."

parents 6980f5dc a020585e
......@@ -781,10 +781,10 @@ int Blend::PerformFinalBlending(YUVinfo &imgMos, MosaicRect &cropping_rect)
for(int j=0; j<imgMos.Y.height; j++)
{
delete b[j];
delete [] b[j];
}
delete b;
delete [] b;
return BLEND_RET_OK;
}
......
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