Skip to content

Commit

Permalink
Fixed a small memory leak
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6476 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Feb 1, 2007
1 parent cee0bdc commit c1dc62d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/qgslabel.cpp
Expand Up @@ -62,7 +62,9 @@ QgsLabel::QgsLabel( const QgsFieldMap & fields )
}

QgsLabel::~QgsLabel()
{}
{
delete mLabelAttributes;
}

QString QgsLabel::fieldValue ( int attr, QgsFeature &feature )
{
Expand Down

0 comments on commit c1dc62d

Please sign in to comment.