From 5e63ee952d336d31bb4d5bd776a1fa72bac45340 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zden=C4=9Bk=20Salvet?= Date: Fri, 19 Mar 2010 13:44:06 +0000 Subject: [PATCH] Unescape error message from notification calls. --- org.glite.lb.common/src/xml_parse.c.T | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.glite.lb.common/src/xml_parse.c.T b/org.glite.lb.common/src/xml_parse.c.T index 5420b2d..4e81d9d 100644 --- a/org.glite.lb.common/src/xml_parse.c.T +++ b/org.glite.lb.common/src/xml_parse.c.T @@ -666,7 +666,7 @@ static void startNotifResult(void *data, const char *el, const char **attr) if (!strcmp(attr[i],"code")) XMLCtx->errCode = atoi(attr[i+1]); else if (!strcmp(attr[i],"desc")) - XMLCtx->errDesc = strdup(attr[i+1]); + XMLCtx->errDesc = glite_lbu_EscapeXML(attr[i+1]); else { unexpError() } } break; -- 1.8.2.3