Skip to content

Commit

Permalink
Fix mismatched allocation error from fdopen/pclose to fdopen/fclose. …
Browse files Browse the repository at this point in the history
…This is to resolve a "mismatched-dealloc" error that blocked packaging a deb for Bookworm.

Change-Id: Ib40ad4b7cd654b584c70df87681abb039a9428f6
  • Loading branch information
j6r33n committed Sep 27, 2023
1 parent 978c5da commit bb54ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion input.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ static void input_pipe_main (input_t *in) {
}

if (fp)
pclose(fp);
fclose(fp);

free(buf);
}
Expand Down

0 comments on commit bb54ddd

Please sign in to comment.