kconfig: qconf: use delete[] instead of delete to free array (again)
authorMasahiro Yamada <masahiroy@kernel.org>
Tue, 8 Sep 2020 22:16:37 +0000 (07:16 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Fri, 18 Sep 2020 15:12:13 +0000 (00:12 +0900)
commita608b6a646e8816bc0db156baad2e0679fa4d137
treeb6d77c72e009309475e04fe5ecfa57457e2e1635
parent856deb866d16e29bd65952e0289066f6078af773
kconfig: qconf: use delete[] instead of delete to free array (again)

Commit c9b09a9249e6 ("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: c4f7398bee9c ("kconfig: qconf: make debug links work again")
Fixes: c9b09a9249e6 ("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>
scripts/kconfig/qconf.cc