(svn r26081) -Fix [FS#5815]: memset with virtual functions doesn't quite work. Upon further review CompanyProperties doesn't need to be virtual in the current code base

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
rubidium 11 years ago
parent a8e8f606d8
commit 6fb28d8719

@ -100,7 +100,7 @@ struct CompanyProperties {
CompanyProperties() : name(NULL), president_name(NULL) {}
virtual ~CompanyProperties()
~CompanyProperties()
{
free(this->name);
free(this->president_name);

Loading…
Cancel
Save