in ie_exp.cpp, line 62, we have:

        UT_ASSERT(m_sniffers.addItem (s, &ndx) == UT_OK);

but if we define NDEBUG, UT_ASSERT will expand to nothing, thus in
production conditions it will be equivalent to:

 ;

when I think that it should be equivalent to:

 m_sniffers.addItem (s, &ndx);

Am I missing something?

Cheers,

-- 
Joaqu�n Cuenca Abela
[EMAIL PROTECTED]

Reply via email to