[PATCH 1/3] Fix verbose printing of ARGS_STRING_POINTER_LENGTH
Pretty much untested, just seen when taking that piece of code as a
copypaste source.
[PATCH 2/3] Fix typos
Well, also reworded a bit
[PATCH 3/3] Avoid segfault with -v when sym is NULL in
That one happens with the following small Qt program I'm using for
tests, when run with "-v -A". Reproduced with the current debian
package.
----8<----
#include <Qt/QtCore>
#include <QtCore/QDebug>
int main(int argc, char* argv[])
{
QCoreApplication * app = new QCoreApplication(argc, argv);
qDebug() << QString("coucou");
qDebug() << app->metaObject()->className();
QDirIterator it("/tmp", QDirIterator::Subdirectories);
//while (it.hasNext()) {
// qDebug() << it.next();
//}
return 0;
}
----8<----