On 18 April 2010 10:52, Blue Swirl <blauwir...@gmail.com> wrote: > Fix clang error: > CC bt-sdp.o > /src/qemu/hw/bt-sdp.c:174:17: error: if statement has empty body > [-Wempty-body] > if (len > 1); > > However, fixing this means that some code that was previously > ignored by the compiler now gets compiled, resulting in this error: > CC bt-sdp.o > cc1: warnings being treated as errors > /src/qemu/hw/bt-sdp.c: In function 'sdp_svc_search': > /src/qemu/hw/bt-sdp.c:184: error: 'max' may be used uninitialized in > this function > > I could not figure out how to calculate max, so I just invented some > figure to suppress the error.
Thanks, good catches, I applied fixes to both problems. Turns out we were assigning the value of the "Max" parameter of the request to the wrong variable, which was later overwritten anyway. I don't know what I was thinking... Cheers