Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix memory leaks
  • Loading branch information
nyalldawson committed Feb 16, 2015
1 parent c9c15af commit f6d0e70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/core/qgsgml.cpp
Expand Up @@ -474,6 +474,7 @@ void QgsGml::endElement( const XML_Char* el )
else
{
QgsDebugMsg( "no wkb fragments" );
delete [] wkb;
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/plugins/dxf2shp_converter/dxf2shpconvertergui.cpp
Expand Up @@ -78,6 +78,7 @@ void dxf2shpConverterGui::on_buttonBox_accepted()
{
// if file open failed
QgsDebugMsg( "Aborting: The input file could not be opened." );
delete dxf_inserts;
return;
}

Expand Down

0 comments on commit f6d0e70

Please sign in to comment.