Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_lookup.c

    r96b02eb9 rffa2c8ef  
    3737
    3838#include "vfs.h"
    39 #include <ipc/ipc.h>
    4039#include <macros.h>
    4140#include <async.h>
     
    179178        fibril_mutex_unlock(&plb_mutex);
    180179       
    181         if (((int) rc < EOK) || (!result))
     180        if ((int) rc < EOK)
    182181                return (int) rc;
     182
     183        if (!result)
     184                return EOK;
    183185       
    184186        result->triplet.fs_handle = (fs_handle_t) rc;
Note: See TracChangeset for help on using the changeset viewer.