Skip to content

Commit

Permalink
server: stop processing after 'no REQUEST' exception (fixes #11543)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Nov 4, 2014
1 parent eda723c commit 1d3f8a7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/mapserver/qgswmsserver.cpp
Expand Up @@ -101,6 +101,8 @@ void QgsWMSServer::executeRequest()
{
QgsDebugMsg( "unable to find 'REQUEST' parameter, exiting..." );
mRequestHandler->sendServiceException( QgsMapServiceException( "OperationNotSupported", "Please check the value of the REQUEST parameter" ) );
cleanupAfterRequest();
return;
}

//version
Expand Down

0 comments on commit 1d3f8a7

Please sign in to comment.