Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion net/http/src/THttpServer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1300,8 +1300,10 @@ Bool_t THttpServer::ExecuteWS(std::shared_ptr<THttpCallArg> &arg, Bool_t externa
return kTRUE;
}

if (!handler)
if (!handler) {
arg->Set404();
return kFALSE;
}

Bool_t process = kFALSE;

Expand Down
Loading