Skip to content

Commit

Permalink
cppcheck: add hint to false positive, the variable appear to be used!
Browse files Browse the repository at this point in the history
  • Loading branch information
dekarl committed Jul 19, 2013
1 parent a6552cc commit c0c1aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/yuv2rgb.cpp
Expand Up @@ -703,7 +703,7 @@ void rgb32_to_yuv420p(unsigned char *lum, unsigned char *cb, unsigned char *cr,

cb++;
cr++;
p += 4;
p += 4; // we dereference p in the next iteration, so its not really unused
lum += -wrap + 2;
alpha += -wrap + 2;
}
Expand Down

0 comments on commit c0c1aa9

Please sign in to comment.