From 2d7cf75e427be142ec3a122e1eb159e3ddb13507 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 20 Oct 2006 15:26:02 +0000 Subject: r9298@dhcp-18-188-67-85: nickm | 2006-10-20 11:25:07 -0400 Weasel correctly notes that we should not discard the return value from connection_exit_begin_con. Right now, the return value is always discardable, so this does not actually cause a bug, but it might later. So fix it. svn:r8774 --- src/or/relay.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/or/relay.c') diff --git a/src/or/relay.c b/src/or/relay.c index f70ed2317..f084461c8 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -984,8 +984,7 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, "Begin cell for known stream. Dropping."); return 0; } - connection_exit_begin_conn(cell, circ); - return 0; + return connection_exit_begin_conn(cell, circ); case RELAY_COMMAND_DATA: ++stats_n_data_cells_received; if (( layer_hint && --layer_hint->deliver_window < 0) || -- cgit v1.2.3