From fc05a25c3100a114f64450604fc897c77c4f0db6 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 19 Apr 2010 12:56:52 +0200 Subject: [PATCH] Remove redundant client_incref, client_destroy --- src/connection.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/connection.c b/src/connection.c index 260196c..e765435 100644 --- a/src/connection.c +++ b/src/connection.c @@ -173,7 +173,6 @@ static void non_block_events(struct connection *co) continue; ev = ZOOM_connection_last_event(link); - client_incref(cl); #if 0 yaz_log(YLOG_LOG, "ZOOM_EVENT_%s", ZOOM_get_event_str(ev)); #endif @@ -220,16 +219,13 @@ static void non_block_events(struct connection *co) yaz_log(YLOG_LOG, "Unhandled event (%d) from %s", ev, client_get_url(cl)); } - client_destroy(cl); } if (got_records) { struct client *cl = co->client; if (cl) { - client_incref(cl); client_got_records(cl); - client_destroy(cl); } } } -- 1.7.10.4