MathewWi / dop-mii

Automatically exported from code.google.com/p/dop-mii
GNU General Public License v3.0
0 stars 0 forks source link

delete/free mismatch #82

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
in SysCheck.cpp line 118, there is memory freed by using 'delete'.  this memory 
was allocated by using memalign().  it is generally considered a bad idea and 
undifined behavior to use malloc()/memalign()/calloc()/realloc() with 'delete'  
or 'new' with free().

Original issue reported on code.google.com by giantpune@gmail.com on 2 May 2011 at 1:34

GoogleCodeExporter commented 9 years ago
You're awesome. Thank you :)

Original comment by castleva...@yahoo.com on 13 Jul 2011 at 5:39