Changes in uspace/lib/net/generic/generic.c [28a3e74:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/generic/generic.c
r28a3e74 rffa2c8ef 106 106 return EBADMEM; 107 107 108 / * Request the address */108 // request the address 109 109 message_id = async_send_1(phone, (sysarg_t) message, 110 110 (sysarg_t) device_id, NULL); … … 112 112 async_wait_for(message_id, &result); 113 113 114 / * If not successful */114 // if not successful 115 115 if ((string == EOK) && (result != EOK)) { 116 / * Clear the data */116 // clear the data 117 117 free(*address); 118 118 free(*data); … … 242 242 return EBADMEM; 243 243 244 / * Request the translation */244 // request the translation 245 245 message_id = async_send_3(phone, (sysarg_t) message, 246 246 (sysarg_t) device_id, (sysarg_t) count, (sysarg_t) service, NULL); … … 249 249 async_wait_for(message_id, &result); 250 250 251 / * If not successful */251 // if not successful 252 252 if ((string == EOK) && (result != EOK)) { 253 / * Clear the data */253 // clear the data 254 254 free(*translation); 255 255 free(*data);
Note:
See TracChangeset
for help on using the changeset viewer.