Changes in uspace/srv/loc/loc.c [5cc9eba:77a69ea] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loc/loc.c

    r5cc9eba r77a69ea  
    813813 * On success, answer will contain EOK int retval.
    814814 * On failure, error code will be sent in retval.
    815  *
    816815 */
    817816static void loc_callback_create(ipc_callid_t iid, ipc_call_t *icall)
    818817{
    819         cb_sess_t *cb_sess = calloc(1, sizeof(cb_sess_t));
     818        cb_sess_t *cb_sess;
     819       
     820        cb_sess = calloc(1, sizeof(cb_sess_t));
    820821        if (cb_sess == NULL) {
    821822                async_answer_0(iid, ENOMEM);
Note: See TracChangeset for help on using the changeset viewer.