From: Daniel KouĊ™il Date: Mon, 14 Aug 2006 14:48:41 +0000 (+0000) Subject: Use edg_wll_NotifIdDup() to copy the whole notification structure. Fixes bug X-Git-Tag: glite-lb-server_R_1_3_9~4 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=82b0ecd712b4908798cdd46a4dd880ca0dbacfe0;p=jra1mw.git Use edg_wll_NotifIdDup() to copy the whole notification structure. Fixes bug #18879 --- diff --git a/org.glite.lb.server/src/il_notification.c b/org.glite.lb.server/src/il_notification.c index c35c221..d183203 100644 --- a/org.glite.lb.server/src/il_notification.c +++ b/org.glite.lb.server/src/il_notification.c @@ -57,7 +57,7 @@ notif_create_ulm( event->any.level = context->p_level; event->any.source = context->p_source; if (context->p_instance) event->notification.src_instance = strdup(context->p_instance); - event->notification.notifId = reg_id; + event->notification.notifId = edg_wll_NotifIdDup(reg_id); if (owner) event->notification.owner = strdup(owner); if (host) event->notification.dest_host = strdup(host); event->notification.dest_port = port;