Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
remove hexdump on ipc failure
Browse files Browse the repository at this point in the history
  • Loading branch information
misson20000 committed Mar 7, 2018
1 parent 1ecdfa0 commit affc3c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ipc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1006,8 +1006,8 @@ result_t ipc_send(ipc_object_t object, ipc_request_t *rq, ipc_response_fmt_t *rs
memcpy(tls, buf, sizeof(buf));
ipc_debug_flag = 1;
}
r = svcSendSyncRequest(object.object_id >= 0 ? object.domain->session : object.session); if(r) {
hexdump_dbg(tls, 0x50);
r = svcSendSyncRequest(object.object_id >= 0 ? object.domain->session : object.session);
if(r) {
return r;
}
if(ipc_debug_flag) {
Expand Down

0 comments on commit affc3c0

Please sign in to comment.