Browse Source

inpcom.c, free_function(), remove a memory leak

pre-master-46
h_vogt 10 years ago
committed by rlar
parent
commit
1ef05dc51b
  1. 1
      src/frontend/inpcom.c

1
src/frontend/inpcom.c

@ -2785,6 +2785,7 @@ free_function(struct function *fcn)
tfree(fcn->name);
tfree(fcn->body);
tfree(fcn->accept);
for (i = 0; i < fcn->num_parameters; i++)
tfree(fcn->params[i]);

Loading…
Cancel
Save