cygwin: Remove comparison of 'this' to 'NULL' in _pinfo::pipe_fhandler

Fix all callers.
This commit is contained in:
Ken Brown 2017-09-16 22:04:15 -04:00 committed by Corinna Vinschen
parent d1ea8f4a46
commit 56f23a5107
1 changed files with 1 additions and 1 deletions

View File

@ -819,7 +819,7 @@ out:
fhandler_pipe *
_pinfo::pipe_fhandler (int64_t unique_id, size_t &n)
{
if (!this || !pid)
if (!pid)
return NULL;
if (pid == myself->pid)
return NULL;