Skip to content

Commit

Permalink
msMVTWriteTile(): fix test condition (CID 1503319)
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 15, 2021
1 parent 05d205a commit 496023d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mapmvt.c
Expand Up @@ -524,9 +524,9 @@ int msMVTWriteTile( mapObj *map, int sendheaders ) {

feature_cleanup:
msFreeShape(&shape);
if(retcode != MS_SUCCESS) goto layer_cleanup;
if(status != MS_SUCCESS) goto layer_cleanup;
} /* next shape */
layer_cleanup:
layer_cleanup:
msLayerClose(layer);
msGMLFreeItems(item_list);
UT_HASH_ITER(hh, value_lookup_cache.cache, cur_value_lookup, tmp_value_lookup) {
Expand Down

0 comments on commit 496023d

Please sign in to comment.