git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@467 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
Nishi 2025-10-22 18:02:12 +00:00
commit a0cca031d6
5 changed files with 123 additions and 38 deletions

View file

@ -15,7 +15,7 @@ void MwListBoxDestroyPacket(MwListBoxPacket* packet) {
int j;
for(i = 0; i < arrlen(packet->names); i++) {
for(j = 0; j < arrlen(packet->names[i]); j++){
for(j = 0; j < arrlen(packet->names[i]); j++) {
if(packet->names[i][j] != NULL) free(packet->names[i][j]);
}
arrfree(packet->names[i]);