diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-07-31 19:43:37 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-07-31 19:43:37 +0000 |
commit | ad7ee4ad6c3a5388acf94dd532d291ea6d3a5972 (patch) | |
tree | c1e9c84d7fcfe81887c55d5c5405365de405caaa /ui/vnc-enc-tight.c | |
parent | aee474ebc62686ae8827747b0b1aed85b8122979 (diff) | |
download | hqemu-ad7ee4ad6c3a5388acf94dd532d291ea6d3a5972.zip hqemu-ad7ee4ad6c3a5388acf94dd532d291ea6d3a5972.tar.gz |
Initialize a variable in all cases
Commit d167f9bc06a577d6c85b8ed6991c1efe175aae7d missed this one:
/src/qemu/ui/vnc-enc-tight.c:1483: warning: 'ret' may be used uninitialized in this function
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'ui/vnc-enc-tight.c')
-rw-r--r-- | ui/vnc-enc-tight.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c index 6f046f8..c4c9c3b 100644 --- a/ui/vnc-enc-tight.c +++ b/ui/vnc-enc-tight.c @@ -1503,6 +1503,8 @@ static int send_sub_rect_jpeg(VncState *vs, int x, int y, int w, int h, } else { ret = send_palette_rect(vs, x, y, w, h, palette); } + } else { + ret = 0; } return ret; } |