Skip to content

Commit

Permalink
Removed bug that caused MapServer only to use the Oracle TranslateFil…
Browse files Browse the repository at this point in the history
…ter method at the first call e.g. in an FCGI environment

unlike all other vtable assignments the
msOracleSpatialLayerTranslateFilter was set to layer->vtable and not to
vtable
  • Loading branch information
micking committed Feb 1, 2017
1 parent 027f421 commit 3e8c9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maporaclespatial.c
Original file line number Diff line number Diff line change
Expand Up @@ -3956,7 +3956,7 @@ PluginInitializeVirtualTable(layerVTableObj* vtable, layerObj *layer)
assert(layer != NULL);
assert(vtable != NULL);

layer->vtable->LayerTranslateFilter = msOracleSpatialLayerTranslateFilter;
vtable->LayerTranslateFilter = msOracleSpatialLayerTranslateFilter;


vtable->LayerInitItemInfo = msOracleSpatialLayerInitItemInfo;
Expand Down

0 comments on commit 3e8c9c8

Please sign in to comment.