Skip to content

Commit 1d3f8a7

Browse files
committedNov 4, 2014
server: stop processing after 'no REQUEST' exception (fixes #11543)
1 parent eda723c commit 1d3f8a7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/mapserver/qgswmsserver.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ void QgsWMSServer::executeRequest()
101101
{
102102
QgsDebugMsg( "unable to find 'REQUEST' parameter, exiting..." );
103103
mRequestHandler->sendServiceException( QgsMapServiceException( "OperationNotSupported", "Please check the value of the REQUEST parameter" ) );
104+
cleanupAfterRequest();
105+
return;
104106
}
105107

106108
//version

0 commit comments

Comments
 (0)
Please sign in to comment.