|
19 | 19 | sentry_crash_ipc_t * |
20 | 20 | sentry__crash_ipc_init_app(sem_t *init_sem) |
21 | 21 | { |
22 | | - sentry_crash_ipc_t *ipc = SENTRY_MAKE_0(sentry_crash_ipc_t); |
| 22 | + sentry_crash_ipc_t *ipc = SENTRY_MAKE(sentry_crash_ipc_t); |
23 | 23 | if (!ipc) { |
24 | 24 | return NULL; |
25 | 25 | } |
@@ -174,7 +174,7 @@ sentry_crash_ipc_t * |
174 | 174 | sentry__crash_ipc_init_daemon( |
175 | 175 | pid_t app_pid, uint64_t app_tid, int notify_eventfd, int ready_eventfd) |
176 | 176 | { |
177 | | - sentry_crash_ipc_t *ipc = SENTRY_MAKE_0(sentry_crash_ipc_t); |
| 177 | + sentry_crash_ipc_t *ipc = SENTRY_MAKE(sentry_crash_ipc_t); |
178 | 178 | if (!ipc) { |
179 | 179 | return NULL; |
180 | 180 | } |
@@ -310,7 +310,7 @@ sentry__crash_ipc_free(sentry_crash_ipc_t *ipc) |
310 | 310 | sentry_crash_ipc_t * |
311 | 311 | sentry__crash_ipc_init_app(sem_t *init_sem) |
312 | 312 | { |
313 | | - sentry_crash_ipc_t *ipc = SENTRY_MAKE_0(sentry_crash_ipc_t); |
| 313 | + sentry_crash_ipc_t *ipc = SENTRY_MAKE(sentry_crash_ipc_t); |
314 | 314 | if (!ipc) { |
315 | 315 | return NULL; |
316 | 316 | } |
@@ -467,7 +467,7 @@ sentry_crash_ipc_t * |
467 | 467 | sentry__crash_ipc_init_daemon( |
468 | 468 | pid_t app_pid, uint64_t app_tid, int notify_pipe_read, int ready_pipe_write) |
469 | 469 | { |
470 | | - sentry_crash_ipc_t *ipc = SENTRY_MAKE_0(sentry_crash_ipc_t); |
| 470 | + sentry_crash_ipc_t *ipc = SENTRY_MAKE(sentry_crash_ipc_t); |
471 | 471 | if (!ipc) { |
472 | 472 | return NULL; |
473 | 473 | } |
@@ -600,7 +600,7 @@ sentry__crash_ipc_free(sentry_crash_ipc_t *ipc) |
600 | 600 | sentry_crash_ipc_t * |
601 | 601 | sentry__crash_ipc_init_app(HANDLE init_mutex) |
602 | 602 | { |
603 | | - sentry_crash_ipc_t *ipc = SENTRY_MAKE_0(sentry_crash_ipc_t); |
| 603 | + sentry_crash_ipc_t *ipc = SENTRY_MAKE(sentry_crash_ipc_t); |
604 | 604 | if (!ipc) { |
605 | 605 | return NULL; |
606 | 606 | } |
@@ -729,7 +729,7 @@ sentry__crash_ipc_init_daemon(pid_t app_pid, uint64_t app_tid, |
729 | 729 | (void)event_handle; |
730 | 730 | (void)ready_event_handle; |
731 | 731 |
|
732 | | - sentry_crash_ipc_t *ipc = SENTRY_MAKE_0(sentry_crash_ipc_t); |
| 732 | + sentry_crash_ipc_t *ipc = SENTRY_MAKE(sentry_crash_ipc_t); |
733 | 733 | if (!ipc) { |
734 | 734 | return NULL; |
735 | 735 | } |
|
0 commit comments