summaryrefslogtreecommitdiff
path: root/src/notification_ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/notification_ipc.c')
-rw-r--r--src/notification_ipc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/notification_ipc.c b/src/notification_ipc.c
index ac1391b..b5a298e 100644
--- a/src/notification_ipc.c
+++ b/src/notification_ipc.c
@@ -308,6 +308,11 @@ notification_op *notification_ipc_create_op(notification_op_type_e type, int num
}
op_list = (notification_op *)malloc(sizeof(notification_op) * num_op);
+
+ if (op_list == NULL) {
+ return NULL;
+ }
+
memset(op_list, 0x0, sizeof(notification_op) * num_op);
for (i = 0; i < num_op; i++) {