Changes in uspace/lib/hound/src/client.c [cf13b17:fed5a9b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/hound/src/client.c
rcf13b17 rfed5a9b 123 123 return NULL; 124 124 } 125 new_context->id = hound_service_register_context( 126 new_context->session, new_context->name, record); 127 if (hound_context_id_err(new_context->id) != EOK) { 125 int rc = hound_service_register_context( 126 new_context->session, new_context->name, record, 127 &new_context->id); 128 if (rc != EOK) { 128 129 hound_service_disconnect(new_context->session); 129 130 free(new_context->name);
Note:
See TracChangeset
for help on using the changeset viewer.