* fhandler_virtual.cc (fhandler_virtual::opendir): Eliminate duplicate

assignment found by Clang.
This commit is contained in:
Christopher Faylor
2012-07-02 20:01:19 +00:00
parent e82360f659
commit ceec584ad3
2 changed files with 5 additions and 1 deletions

View File

@@ -77,7 +77,6 @@ fhandler_virtual::opendir (int fd)
if (fd >= 0)
{
dir->__d_fd = fd;
res = dir;
dir->__fh = this;
res = dir;
}