mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
Remove unused increments as detect by LLVM's CLang static analyzer.
This commit is contained in:
parent
00cbbc87c7
commit
971755842d
2 changed files with 2 additions and 2 deletions
|
@ -231,7 +231,7 @@ unescape_character (const char *scanner)
|
|||
return -1;
|
||||
}
|
||||
|
||||
second_digit = hex_to_int (*scanner++);
|
||||
second_digit = hex_to_int (*scanner);
|
||||
if (second_digit < 0) {
|
||||
return -1;
|
||||
}
|
||||
|
|
|
@ -1910,7 +1910,7 @@ gst_string_unwrap (const gchar * s)
|
|||
goto beach;
|
||||
|
||||
/* null terminate result string and return */
|
||||
*write++ = '\0';
|
||||
*write = '\0';
|
||||
return ret;
|
||||
|
||||
beach:
|
||||
|
|
Loading…
Reference in a new issue