Changes in / [54935cf6:00a8f1b] in mainline
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbmast/main.c
r54935cf6 r00a8f1b 158 158 } 159 159 160 free(fun_name); 161 160 162 /* Allocate soft state */ 161 163 mfun = ddf_dev_data_alloc(mdev->ddf_dev, sizeof(usbmast_fun_t)); … … 168 170 mfun->mdev = mdev; 169 171 mfun->lun = lun; 172 173 fun_name = NULL; 170 174 171 175 /* Set up a connection handler. */ … … 215 219 goto error; 216 220 } 217 218 free(fun_name);219 221 220 222 return EOK; -
uspace/lib/c/generic/ns.c
r54935cf6 r00a8f1b 75 75 { 76 76 async_exch_t *exch = async_exchange_begin(session_ns); 77 if (!exch)78 return NULL;79 77 async_sess_t *sess = 80 78 async_connect_me_to_blocking(mgmt, exch, service, arg2, arg3); 81 79 async_exchange_end(exch); 82 83 if (!sess)84 return NULL;85 80 86 81 /*
Note:
See TracChangeset
for help on using the changeset viewer.