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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ class VhdlString
    }
   ~VhdlString()
    {
      delete[] m_str;
      free(m_str);
    }
    VhdlString& append(const char *s,int size)
    {