Skip to content

Commit

Permalink
Qt 6.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stoeckerb committed Feb 3, 2022
1 parent 066eb09 commit d2e4334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysql/qsql_mysql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ bool QMYSQLResult::exec()

MYSQL_BIND* currBind = &d->outBinds[i];

nullVector[i] = static_cast<my_bool>(val.isNull());
nullVector[i] = static_cast<my_bool>(QSqlResultPrivate::isVariantNull(val));
currBind->is_null = &nullVector[i];
currBind->length = 0;
currBind->is_unsigned = 0;
Expand Down

0 comments on commit d2e4334

Please sign in to comment.