PATCH: fix uninitialized usage warning

master
Harald Wolff-Thobaben 2023-06-08 10:57:32 +02:00
parent 3119e412a7
commit 441f99dfbc
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ void qdict_array_split(QDict *src, QList **dst)
for (i = 0; i < UINT_MAX; i++) {
QObject *subqobj;
bool is_subqdict;
QDict *subqdict;
QDict *subqdict = NULL;
char indexstr[32], prefix[32];
size_t snprintf_ret;