From b029d5011ee8e9b7297ada799a1646f25a2ce102 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zden=C4=9Bk=20Salvet?= Date: Mon, 27 Aug 2007 16:29:03 +0000 Subject: [PATCH] Proper statement grouping after if. --- org.glite.lb.common/src/xml_parse.c.T | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/org.glite.lb.common/src/xml_parse.c.T b/org.glite.lb.common/src/xml_parse.c.T index 9c06dc0..04afdcf 100644 --- a/org.glite.lb.common/src/xml_parse.c.T +++ b/org.glite.lb.common/src/xml_parse.c.T @@ -853,10 +853,11 @@ static void endQueryEvents(void *data, const char *el UNUSED_VAR) } break; case 2: - /* skip events of unknown type */ - if (XMLCtx->eventCode == EDG_WLL_EVENT_UNDEF) + /* skip events of unknown type */ + if (XMLCtx->eventCode == EDG_WLL_EVENT_UNDEF) { edg_wll_FreeEvent(&(XMLCtx->eventsOutGlobal)[XMLCtx->position]); - XMLCtx->position--; + XMLCtx->position--; + } /* fallthough */ default: if (XMLCtx->char_buf) { -- 1.8.2.3