Commit d6b004b2 authored by Tristan Matthews's avatar Tristan Matthews

hds: fix out of bounds access (cid #1224531)

parent cbd645e4
...@@ -618,7 +618,7 @@ static void whitespace_substr( char** start, ...@@ -618,7 +618,7 @@ static void whitespace_substr( char** start,
return; return;
while( is_whitespace(*(*end - 1) ) ) { while( is_whitespace(*(*end - 1) ) ) {
end--; (*end)--;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment