kconfig: qconf: use delete[] instead of delete to free array (again)

Commit c9b09a9249 ("kconfig: qconf: use delete[] instead of delete
to free array") fixed two lines, but there is one more.
(cppcheck does not report it for some reason...)

This was detected by Clang.

"make HOSTCXX=clang++ xconfig" reports the following:

scripts/kconfig/qconf.cc:1279:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
        delete data;
        ^
              []
scripts/kconfig/qconf.cc:1239:15: note: allocated with 'new[]' here
        char *data = new char[count + 1];
                     ^

Fixes: c4f7398bee ("kconfig: qconf: make debug links work again")
Fixes: c9b09a9249 ("kconfig: qconf: use delete[] instead of delete to free array")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
This commit is contained in:
Masahiro Yamada 2020-09-09 07:16:37 +09:00
parent 856deb866d
commit a608b6a646

View file

@ -1276,7 +1276,7 @@ void ConfigInfoView::clicked(const QUrl &url)
} }
free(result); free(result);
delete data; delete[] data;
} }
void ConfigInfoView::contextMenuEvent(QContextMenuEvent *event) void ConfigInfoView::contextMenuEvent(QContextMenuEvent *event)