-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
> Hi, The problem is in this build log:-
> http://mtf.no-ip.co.uk/pub/linux/barjac/distrib/cauldron/x86_64/log/libyui-2.42.4-0.git20130107.3.mga3.src.rpm/build.0.20130328124443.log
>
>
>
> I have builds of boost-1.53 in here
> http://mtf.no-ip.co.uk/pub/linux/barjac/distrib/cauldron/x86_64/media/extra/release/
>
> and
> http://mtf.no-ip.co.uk/pub/linux/barjac/distrib/cauldron/i586/media/extra/release/
>
> media-info is up to date.
>
> Thanks, Barry
>
Barry i cannot test this now, but if i understood correctly the problem
and talking to libyui developer this patch should work.
Can you test it and tell me if it's ok please?
Thanks
Angelo
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iEYEARECAAYFAlFdfxIACgkQqEs9DA4DquBWiACgkPTPxVHaUcWxEVAmyrZ2FzGN
x94AoI6W7dDPTBJ5SEAGf7YH1NhL3cMt
=xU47
-----END PGP SIGNATURE-----
diff --git a/src/YUIException.h b/src/YUIException.h
index f0dcb21..91ee5a0 100644
--- a/src/YUIException.h
+++ b/src/YUIException.h
@@ -147,7 +147,7 @@ class YWidget;
#define YUI_CHECK_NEW( PTR ) \
do \
{ \
- if ( ! (PTR) ) \
+ if ( (PTR == 0) ) \
{ \
YUI_THROW( YUIOutOfMemoryException() ); \
} \
@@ -162,7 +162,7 @@ class YWidget;
#define YUI_CHECK_PTR( PTR ) \
do \
{ \
- if ( ! (PTR) ) \
+ if ( (PTR == 0) ) \
{ \
YUI_THROW( YUINullPointerException() ); \
} \