use BUGBUG to mark valgrind complaints (known serious bugs)

This commit is contained in:
Albert Cahalan 2007-12-01 02:29:54 +00:00
parent 1022b67e00
commit 9a3b9bec14

View file

@ -4702,7 +4702,7 @@ static void stamp_draw(int x, int y)
/* And blit it! */
dest.x = base_x;
dest.y = base_y;
SDL_BlitSurface(final_surf, NULL, canvas, &dest);
SDL_BlitSurface(final_surf, NULL, canvas, &dest); // BUGBUG: Conditional jump or move depends on uninitialised value(s)
update_canvas(x - (CUR_STAMP_W + 1) / 2,
y - (CUR_STAMP_H + 1) / 2,
@ -14859,7 +14859,7 @@ static void stamp_xor(int x, int y)
{
for (xx = 0; xx < stamp_outline_w; xx++)
{
if (!stamp_outline_data[xx + yy * stamp_outline_w])
if (!stamp_outline_data[xx + yy * stamp_outline_w]) // BUGBUG: Conditional jump or move depends on uninitialised value(s)
continue;
sx = x + xx - stamp_outline_w / 2;
sy = y + yy - stamp_outline_h / 2;
@ -16042,7 +16042,7 @@ static int mySDL_PollEvent(SDL_Event * event)
}
else
{
ret = SDL_PollEvent(event);
ret = SDL_PollEvent(event); // BUGBUG: Conditional jump or move depends on uninitialised value(s)
if (recording && ret > 0)
{