Changes in uspace/lib/net/generic/packet_remote.c [49bd793b:6b82009] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/generic/packet_remote.c
r49bd793b r6b82009 115 115 116 116 *packet = pm_find(packet_id); 117 if ( *packet == NULL) {117 if (!*packet) { 118 118 async_exch_t *exch = async_exchange_begin(sess); 119 119 sysarg_t size; … … 130 130 } 131 131 132 if ((*packet != NULL) && ((*packet)->next)) {132 if ((*packet)->next) { 133 133 packet_t *next; 134 134 return packet_translate_remote(sess, &next, (*packet)->next);
Note:
See TracChangeset
for help on using the changeset viewer.