Changeset 08e3ca4 in mainline for uspace/srv/net/il/arp/arp_module.c


Ignore:
Timestamp:
2010-11-03T22:31:48Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8f95529
Parents:
02314f8
Message:

Remove duplicities.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/arp/arp_module.c

    r02314f8 r08e3ca4  
    7777       
    7878        rc = arp_initialize(client_connection);
    79         if (rc != EOK) {
    80                 pm_destroy();
    81                 return rc;
    82         }
     79        if (rc != EOK)
     80                goto out;
    8381       
    8482        rc = REGISTER_ME(SERVICE_ARP, &phonehash);
    85         if (rc != EOK) {
    86                 pm_destroy();
    87                 return rc;
    88         }
     83        if (rc != EOK)
     84                goto out;
    8985       
    9086        async_manager();
    91        
     87
     88out:
    9289        pm_destroy();
    93         return EOK;
     90        return rc;
    9491}
    9592
Note: See TracChangeset for help on using the changeset viewer.