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

(-)ng_base.c (-1 / +1 lines)
Lines 1100-1106 Link Here
1100
1100
1101
	/* Now compute return address, i.e., the path to the sender */
1101
	/* Now compute return address, i.e., the path to the sender */
1102
	if (rtnp != NULL) {
1102
	if (rtnp != NULL) {
1103
		MALLOC(*rtnp, char *, NG_NODELEN + 2, M_NETGRAPH, M_WAITOK);
1103
		MALLOC(*rtnp, char *, NG_NODELEN + 2, M_NETGRAPH, M_NOWAIT);
1104
		if (*rtnp == NULL) {
1104
		if (*rtnp == NULL) {
1105
			TRAP_ERROR;
1105
			TRAP_ERROR;
1106
			return (ENOMEM);
1106
			return (ENOMEM);

Return to bug 20057