Commit 088832b8 authored by Matthew Beckler's avatar Matthew Beckler Committed by Dick Hollenbeck

Match 'new char[]' with proper delete[] char* rather than delete char*.

parent 35e1c659
......@@ -563,7 +563,7 @@ int EDA_BASE_FRAME::ReadHotkeyConfigFile( const wxString& aFilename,
ParseHotkeyConfig( data, aDescList );
/* cleanup */
delete buffer;
delete[] buffer;
cfgfile.Close();
return 1;
}
......
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