mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
Server: Fix endless loop when processing WFS-T DELETE Operation with FEATUREID
This commit is contained in:
parent
9f751f232f
commit
4448ebffe9
@ -914,7 +914,7 @@ namespace QgsWfs
|
||||
}
|
||||
|
||||
QMap<QString, QStringList>::const_iterator fidsMapIt = fidsMap.constBegin();
|
||||
while ( fidsMapIt != fidsMap.constEnd() )
|
||||
for ( ;fidsMapIt != fidsMap.constEnd(); ++fidsMapIt )
|
||||
{
|
||||
transactionDelete action;
|
||||
action.typeName = fidsMapIt.key();
|
||||
|
@ -891,7 +891,7 @@ namespace QgsWfs
|
||||
}
|
||||
|
||||
QMap<QString, QStringList>::const_iterator fidsMapIt = fidsMap.constBegin();
|
||||
while ( fidsMapIt != fidsMap.constEnd() )
|
||||
for ( ;fidsMapIt != fidsMap.constEnd(); ++fidsMapIt )
|
||||
{
|
||||
transactionDelete action;
|
||||
action.typeName = fidsMapIt.key();
|
||||
|
Loading…
x
Reference in New Issue
Block a user