First Patch

Tobias Burnus burnus@net-b.de
Thu Jun 9 19:25:00 GMT 2011


Daniel Carrera wrote:
> I think I understand the problem. We have:
>
>
>   if (count == 0 || (count == 1 && images[0] == caf_this_image))
>     *stat = 0;

Well, you could have kept the return:

    if (count == 0 || (count == 1&&  images[0] == caf_this_image))
-    return 0;
+    *stat = 0;


Tobias



More information about the Gcc-patches mailing list