You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reportError(tok, Severity::portability, "invalidPointerCast", "Casting between " + from + " and " + to + " which have an incompatible binary data representation.", CWE704, Certainty::normal);
Copy file name to clipboardExpand all lines: lib/checkother.h
-7Lines changed: 0 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,6 @@ class CPPCHECKLIB CheckOther : public Check {
87
87
checkOther.checkKnownArgument();
88
88
checkOther.checkComparePointers();
89
89
checkOther.checkIncompleteStatement();
90
-
checkOther.checkPipeParameterSize();
91
90
checkOther.checkRedundantCopy();
92
91
checkOther.clarifyCalculation();
93
92
checkOther.checkPassByReference();
@@ -190,9 +189,6 @@ class CPPCHECKLIB CheckOther : public Check {
190
189
/** @brief %Check that variadic function calls don't use NULL. If NULL is \#defined as 0 and the function expects a pointer, the behaviour is undefined. */
191
190
voidcheckVarFuncNullUB();
192
191
193
-
/** @brief %Check that calling the POSIX pipe() system call is called with an integer array of size two. */
194
-
voidcheckPipeParameterSize();
195
-
196
192
/** @brief %Check to avoid casting a return value to unsigned char and then back to integer type. */
197
193
voidcheckCastIntToCharAndBack();
198
194
@@ -234,7 +230,6 @@ class CPPCHECKLIB CheckOther : public Check {
0 commit comments