mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-07 22:37:15 +00:00
Merge pull request #11206 from unknownbrackets/debugger
http: Don't crash on unclean client disconnect
This commit is contained in:
commit
82b14e0dd5
@ -59,7 +59,9 @@ Request::~Request() {
|
||||
|
||||
CHECK(in_->Empty());
|
||||
delete in_;
|
||||
CHECK(out_->Empty());
|
||||
if (!out_->Empty()) {
|
||||
ELOG("Output not empty - connection abort?");
|
||||
}
|
||||
delete out_;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user