View | Details | Raw Unified | Return to bug 1539
Collapse All | Expand All

(-)readconf.c (-2 / +6 lines)
Lines 1293-1301 parse_forward(Forward *fwd, const char * Link Here
1293
	return (i);
1293
	return (i);
1294
1294
1295
 fail_free:
1295
 fail_free:
1296
	if (fwd->connect_host != NULL)
1296
	if (fwd->connect_host != NULL) {
1297
		xfree(fwd->connect_host);
1297
		xfree(fwd->connect_host);
1298
	if (fwd->listen_host != NULL)
1298
		fwd->connect_host = NULL;
1299
	}
1300
	if (fwd->listen_host != NULL) {
1299
		xfree(fwd->listen_host);
1301
		xfree(fwd->listen_host);
1302
		fwd->listen_host = NULL;
1303
	}
1300
	return (0);
1304
	return (0);
1301
}
1305
}

Return to bug 1539