Skip to content

Commit 0610200

Browse files
Merge pull request #39 from qualisys/remove_invalid_nullptr_check
Remove invalid nullptr check.
2 parents fa5bd07 + 79d953e commit 0610200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RTProtocol.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ bool CRTProtocol::SaveCapture(const char* pFileName, bool bOverwrite, char* pNew
10131013
return true;
10141014
}
10151015
}
1016-
if (pResponseStr && strlen(pResponseStr) > 0)
1016+
if (strlen(pResponseStr) > 0)
10171017
{
10181018
sprintf(maErrorStr, "%s.", pResponseStr);
10191019
}

0 commit comments

Comments
 (0)