Commit 2038873c authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 735481 - [PATCH] Mismatch in memory allocation/de-allocation function in...

Bug 735481 - [PATCH] Mismatch in memory allocation/de-allocation function in vhdlparser/vhdlstring.h
parent 7a268f59
......@@ -49,7 +49,7 @@ class VhdlString
}
~VhdlString()
{
delete[] m_str;
free(m_str);
}
VhdlString& append(const char *s,int size)
{
......
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