diff options
author | hasso <hasso> | 2004-09-10 21:19:13 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-10 21:19:13 +0000 |
commit | eef0ea00794f3f8700d5176659f3b10f7e274c52 (patch) | |
tree | 6e7e4012250b8ff9e8c8dd5b57c527f7c185cafc /isisd/isis_pdu.c | |
parent | 3146b840da301e17a37a9d453fe9de1c83bbb9a6 (diff) | |
download | quagga-eef0ea00794f3f8700d5176659f3b10f7e274c52.tar.bz2 quagga-eef0ea00794f3f8700d5176659f3b10f7e274c52.tar.xz |
Fixes from LIU Xin.
Diffstat (limited to 'isisd/isis_pdu.c')
-rw-r--r-- | isisd/isis_pdu.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index cae34610..c7142eea 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -812,8 +812,10 @@ process_lan_hello (int level, struct isis_circuit *circuit, u_char * ssnpa) */ adj = isis_new_adj (hdr.source_id, ssnpa, level, circuit); if (adj == NULL) - retval = ISIS_ERROR; - goto out; + { + retval = ISIS_ERROR; + goto out; + } adj->level = level; isis_adj_state_change (adj, ISIS_ADJ_INITIALIZING, NULL); |