Fix C++03 compatibility

This commit is contained in:
vit9696 2019-11-03 17:25:07 +03:00
parent ce8e8c31f8
commit f9b174f78b

View file

@ -141,7 +141,7 @@ UINT8 UEFIPatch::patchFromArg(const QString & path, const QString & patch, const
if (result)
return result;
if (patch != nullptr && !patch.isEmpty()) {
if (patch != NULL && !patch.isEmpty()) {
QByteArray line = patch.toUtf8();
QList<QByteArray> list = line.split(' ');