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

Fix all callers.
This commit is contained in:
Ken Brown
2017-09-16 22:04:13 -04:00
committed by Corinna Vinschen
parent 571b7689bb
commit 911f7d628d
3 changed files with 3 additions and 3 deletions

View File

@@ -976,7 +976,7 @@ char *
_pinfo::cmdline (size_t& n)
{
char *s = NULL;
if (!this || !pid)
if (!pid)
return NULL;
if (ISSTATE (this, PID_NOTCYGWIN))
{