Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/generic/packet_remote.c

    r49bd793b r6b82009  
    115115       
    116116        *packet = pm_find(packet_id);
    117         if (*packet == NULL) {
     117        if (!*packet) {
    118118                async_exch_t *exch = async_exchange_begin(sess);
    119119                sysarg_t size;
     
    130130        }
    131131       
    132         if ((*packet != NULL) && ((*packet)->next)) {
     132        if ((*packet)->next) {
    133133                packet_t *next;
    134134                return packet_translate_remote(sess, &next, (*packet)->next);
Note: See TracChangeset for help on using the changeset viewer.