https://bugs.kde.org/show_bug.cgi?id=366135

--- Comment #11 from Leslie Zhai <xiangzha...@gmail.com> ---
Uninitialized issue
http://stackoverflow.com/questions/4879045/fun-with-uninitialized-variables-and-compiler-gcc
is depends:

1. bool ok; <- without initlized
    if (ok) {} then lead uninitialized issue!

2. bool ok;
QString::toInt(&ok);
// *ok Pointer has been pointed to some address
if (ok) {} NOT issue!

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to