mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 22:13:36 +00:00
Fix file descriptor leaks in linux CrashGenerationServer
R=ted.mielczarek@gmail.com Review URL: https://codereview.chromium.org/1137423004 .
This commit is contained in:
parent
ee69060bfd
commit
ac2a3e466f
1 changed files with 3 additions and 0 deletions
|
@ -123,6 +123,9 @@ CrashGenerationServer::Stop()
|
|||
void* dummy;
|
||||
pthread_join(thread_, &dummy);
|
||||
|
||||
close(control_pipe_in_);
|
||||
close(control_pipe_out_);
|
||||
|
||||
started_ = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue