Incorrect null check, returned null on success rather than failure.

servicizing
Sean McArdle 2016-03-29 14:22:16 -07:00
parent 80baf60e97
commit 5f768806f9
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ namespace WifiSitter
bool threwError = String.IsNullOrEmpty(stderr);
if (threwError)
if (!threwError)
return null;
bool startParse = false;