From 9a3b9bec142eb8c2d8abc99a3960b4aed3207c48 Mon Sep 17 00:00:00 2001 From: Albert Cahalan Date: Sat, 1 Dec 2007 02:29:54 +0000 Subject: [PATCH] use BUGBUG to mark valgrind complaints (known serious bugs) --- src/tuxpaint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index ea08744fd..502a668c2 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -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) {