mirror of https://github.com/MidnightCommander/mc
NULL should be used instead of 0 for pointers.
This commit is contained in:
parent
b844272610
commit
6704676eb4
|
@ -87,7 +87,7 @@ direntry_destructor (void *data)
|
|||
}
|
||||
}
|
||||
free(fe->local_filename);
|
||||
fe->local_filename = 0;
|
||||
fe->local_filename = NULL;
|
||||
}
|
||||
if (fe->remote_filename)
|
||||
free(fe->remote_filename);
|
||||
|
|
Loading…
Reference in New Issue