mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[TXT2NLS] Use delete[] to deallocate new[] output (#4022)
Per AppleClang 13.0 warning.
This commit is contained in:
parent
860d3544af
commit
0ebad9f3c5
1 changed files with 1 additions and 1 deletions
|
@ -541,7 +541,7 @@ int main(int argc, char* argv[])
|
||||||
output.write(reinterpret_cast<char*>(wc_table), 65536 * FileHeader.MaximumCharacterSize);
|
output.write(reinterpret_cast<char*>(wc_table), 65536 * FileHeader.MaximumCharacterSize);
|
||||||
|
|
||||||
output.close();
|
output.close();
|
||||||
delete wc_table;
|
delete[] wc_table;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue