From f1f92d8b90475f42f965172a9b61da961be402c2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20K=C5=99enek?= Date: Thu, 7 Jul 2005 11:43:14 +0000 Subject: [PATCH] initialise connToUse to -1 --- org.glite.lb.common/src/context.c | 1 + 1 file changed, 1 insertion(+) diff --git a/org.glite.lb.common/src/context.c b/org.glite.lb.common/src/context.c index 33cb50c..f42a740 100644 --- a/org.glite.lb.common/src/context.c +++ b/org.glite.lb.common/src/context.c @@ -34,6 +34,7 @@ int edg_wll_InitContext(edg_wll_Context *ctx) out->connPoolNotif = (edg_wll_ConnPool *) calloc(1, sizeof(edg_wll_ConnPool)); out->connProxy = (edg_wll_ConnPool *) calloc(1, sizeof(edg_wll_ConnProxy)); out->connProxy->conn.sock = -1; + out->connToUse = -1; *ctx = out; return 0; -- 1.8.2.3