Merge pull request #336 from edk0/range-leak

ircd_parser: free the ends of ranges after use
This commit is contained in:
Aaron Jones 2020-06-10 14:38:53 +00:00 committed by GitHub
commit 976b9c9614
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -242,6 +242,9 @@ single: oneitem
{ {
add_cur_list(CF_INT, 0, i); add_cur_list(CF_INT, 0, i);
} }
rb_free($1);
rb_free($3);
} }
} }
; ;