Skip to content

Commit

Permalink
clear cached wkb after reshape (fixes #13052)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Oct 11, 2015
1 parent a784d6b commit d277dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/geometry/qgsgeometry.cpp
Expand Up @@ -750,9 +750,9 @@ int QgsGeometry::reshapeGeometry( const QList<QgsPoint>& reshapeWithLine )
detach( false );
delete d->geometry;
d->geometry = geom;
removeWkbGeos();
return 0;
}
removeWkbGeos();
return errorCode;
}

Expand Down

0 comments on commit d277dd6

Please sign in to comment.