Skip to content

Commit

Permalink
Fix use of uninitialized variable.
Browse files Browse the repository at this point in the history
Introduced in 1fafd96.
Related to #573.
  • Loading branch information
gwsw committed Sep 25, 2024
1 parent 85f1bb6 commit 715297e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edit.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ public int edit_ifile(IFILE ifile)
IFILE was_curr_ifile;
char *p;
PARG parg;
ssize_t nread;
ssize_t nread = 0;

if (ifile == curr_ifile)
{
Expand Down

0 comments on commit 715297e

Please sign in to comment.