Skip to content

Commit

Permalink
Bug 735481 - [PATCH] Mismatch in memory allocation/de-allocation func…
Browse files Browse the repository at this point in the history
…tion in vhdlparser/vhdlstring.h
  • Loading branch information
Dimitri van Heesch committed Aug 30, 2014
1 parent 7a268f5 commit 2038873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vhdlparser/vhdlstring.h
Expand Up @@ -49,7 +49,7 @@ class VhdlString
}
~VhdlString()
{
delete[] m_str;
free(m_str);
}
VhdlString& append(const char *s,int size)
{
Expand Down

0 comments on commit 2038873

Please sign in to comment.