Fixed leak of instruction buffer - missing free in guac_close
This commit is contained in:
parent
62a886d258
commit
46a9529aa4
@ -57,6 +57,7 @@ GUACIO* guac_open(int fd) {
|
||||
|
||||
void guac_close(GUACIO* io) {
|
||||
guac_flush(io);
|
||||
free(io->instructionbuf);
|
||||
free(io);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user