giop: free the buffer where its at

Followup on commit 40ce72f1a8


(cherry picked from commit 57b6666920)
This commit is contained in:
Jaap Keuter 2020-11-05 15:32:55 +00:00 committed by Guy Harris
parent 30ca9a975e
commit b387f0c4db
1 changed files with 2 additions and 2 deletions

View File

@ -1564,14 +1564,14 @@ static void read_IOR_strings_from_file(const gchar *name, int max_iorlen) {
decode_IOR(tvb, NULL, NULL, &my_offset, 0, stream_is_big_endian);
tvb_free(tvb);
}
wmem_free(NULL, out);
}
fclose(fp); /* be nice */
wmem_free(NULL, buf);
wmem_free(NULL, out);
}