Skip to content

Commit

Permalink
free BufferObject’s memory
Browse files Browse the repository at this point in the history
  • Loading branch information
msoxzw authored and jlaine committed Mar 28, 2022
1 parent ac99379 commit a826dfd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/aioquic/_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ static void
Buffer_dealloc(BufferObject *self)
{
free(self->base);
Py_TYPE(self)->tp_free((PyObject *) self);
}

static PyObject *
Expand Down

0 comments on commit a826dfd

Please sign in to comment.