_D("_ticker_noti_changed_cb");
- ticker_info = calloc(1, sizeof(ticker_info_s));
- ret_if(!ticker_info);
-
if (num_op == 1) {
//TODO: Functions below are depracated, should not be used
ret = notification_op_get_data(op_list, NOTIFICATION_OP_DATA_TYPE, &op_type);
return;
}
+ ticker_info = calloc(1, sizeof(ticker_info_s));
+ ret_if(ticker_info == NULL);
+
/* Skip if previous ticker is still shown */
/*
if (ticker_info->win != NULL) {
return;
}
}
+ free(ticker_info);
}
static Eina_Bool _tickernoti_callback_register_idler_cb(void *data)