diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 17:16:17 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 17:16:17 (GMT) |
commit | 2038873ce0a9ec90efb28730b3dc787d3d03e964 (patch) | |
tree | 0f473c05565cadd99cc9b8be1108369b8c30f159 /vhdlparser | |
parent | 7a268f59c0551953fe4e7dde0b1e3804d583a060 (diff) | |
download | Doxygen-2038873ce0a9ec90efb28730b3dc787d3d03e964.zip Doxygen-2038873ce0a9ec90efb28730b3dc787d3d03e964.tar.gz Doxygen-2038873ce0a9ec90efb28730b3dc787d3d03e964.tar.bz2 |
Bug 735481 - [PATCH] Mismatch in memory allocation/de-allocation function in vhdlparser/vhdlstring.h
Diffstat (limited to 'vhdlparser')
-rw-r--r-- | vhdlparser/vhdlstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhdlparser/vhdlstring.h b/vhdlparser/vhdlstring.h index ec13907..1980cf5 100644 --- a/vhdlparser/vhdlstring.h +++ b/vhdlparser/vhdlstring.h @@ -49,7 +49,7 @@ class VhdlString } ~VhdlString() { - delete[] m_str; + free(m_str); } VhdlString& append(const char *s,int size) { |