We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi all, There is a redundant check against null issue found by Qihoo360 CodeSafe Team. Details as bellow:
myhtml/source/mycore/mystring.c
Line 78 in 097039f
and
Line 81 in 097039f
Line 86 in 097039f
Cheers Qihoo360 CodeSafe Team
The text was updated successfully, but these errors were encountered:
@360CodeSafe
Thank you! It will be fixed soon.
Sorry, something went wrong.
No branches or pull requests
Hi all,
There is a redundant check against null issue found by Qihoo360 CodeSafe Team.
Details as bellow:
myhtml/source/mycore/mystring.c
Line 78 in 097039f
if str_raw is a null pointer, function will return.
and
myhtml/source/mycore/mystring.c
Line 81 in 097039f
the pointer str_raw is dereferenced.
myhtml/source/mycore/mystring.c
Line 86 in 097039f
there is no need to check pointer str_raw here.
Cheers
Qihoo360 CodeSafe Team
The text was updated successfully, but these errors were encountered: