From: Ian Romanick Date: Wed, 9 Jun 2010 18:00:00 +0000 (-0700) Subject: Use array delete operator to delete an array X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f8b0435b0f9c4df8e19bbbd5df78729bfd25f09;p=mesa.git Use array delete operator to delete an array This was detected by valgrind. I think GCC still does the right thing, but the C++ spec allows the compiler to do something stupid... like crash or only delete the first entry in the array. --- diff --git a/ir_function_inlining.cpp b/ir_function_inlining.cpp index 7ac74ca03b6..7cc8a325ffa 100644 --- a/ir_function_inlining.cpp +++ b/ir_function_inlining.cpp @@ -411,7 +411,7 @@ ir_call::generate_inline(ir_instruction *next_ir) param_iter.next(); } - delete(parameters); + delete [] parameters; if (retval) return new ir_dereference_variable(retval);