Commit 9e33a112 by Al Patrick Committed by Shannon Woods

In ShaderExecutable, delete mFunction with delete[] instead of delete.

BUG=chromium:253578 R=shannonwoods@chromium.org Review URL: https://codereview.appspot.com/10658043
parent d81cf64c
......@@ -26,7 +26,7 @@ class ShaderExecutable
virtual ~ShaderExecutable()
{
delete mFunction;
delete[] mFunction;
}
void *getFunction() const
......
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