Changeset b7b3fda in mainline


Ignore:
Timestamp:
2009-08-30T09:59:31Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4f690cd
Parents:
ff62c6d
Message:

Reset the return code at the beginning of each block_get() retry.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libblock/libblock.c

    rff62c6d rb7b3fda  
    331331        link_t *l;
    332332        unsigned long key = boff;
    333         int rc = EOK;
     333        int rc;
    334334       
    335335        devcon = devcon_search(dev_handle);
     
    341341
    342342retry:
     343        rc = EOK;
     344
    343345        fibril_mutex_lock(&cache->lock);
    344346        l = hash_table_find(&cache->block_hash, &key);
Note: See TracChangeset for help on using the changeset viewer.