-
Notifications
You must be signed in to change notification settings - Fork 106
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
pythonqt/src/PythonQtConversion.h
Lines 272 to 275 in 58ccd53
| static PythonQtClassInfo* innerType = PythonQt::priv()->getClassInfo(PythonQtMethodInfo::getInnerListTypeName(QByteArray(QMetaType::typeName(metaTypeId)))); | |
| if (innerType == NULL) { | |
| std::cerr << "PythonQtConvertListOfKnownClassToPythonList: unknown inner type " << innerType->className().constData() << std::endl; | |
| } |
pythonqt/src/PythonQtConversion.h
Lines 292 to 295 in 58ccd53
| static PythonQtClassInfo* innerType = PythonQt::priv()->getClassInfo(PythonQtMethodInfo::getInnerListTypeName(QByteArray(QMetaType::typeName(metaTypeId)))); | |
| if (innerType == NULL) { | |
| std::cerr << "PythonQtConvertListOfKnownClassToPythonList: unknown inner type " << innerType->className().constData() << std::endl; | |
| } |
This code checks the "innerType" pointer for null and then, if null, is dereferencing the pointer in the cerr prints.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working