openvz_conf.c: Remove dead store to copy_fd

* src/openvz_conf.c (openvz_copyfile): Remove unused assignment.
This commit is contained in:
Jim Meyering 2009-09-03 18:23:51 +02:00
parent f4d881649a
commit 198bd0516a

View File

@ -692,7 +692,6 @@ openvz_copyfile(char* from_path, char* to_path)
fd = -1;
if (close(copy_fd) < 0)
goto error;
copy_fd = -1;
return 0;