Remove unused increments as detect by LLVM's CLang static analyzer.

This commit is contained in:
Edward Hervey 2009-04-03 11:56:48 +02:00
parent 00cbbc87c7
commit 971755842d
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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: