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

(-)sys/kern/kern_exec.c (-1 / +4 lines)
Lines 1264-1272 Link Here
1264
	/*
1264
	/*
1265
	 * install sigcode
1265
	 * install sigcode
1266
	 */
1266
	 */
1267
	if (szsigcode != 0)
1267
	if (szsigcode != 0) {
1268
		copyout(p->p_sysent->sv_sigcode, ((caddr_t)arginfo -
1268
		copyout(p->p_sysent->sv_sigcode, ((caddr_t)arginfo -
1269
		    szsigcode), szsigcode);
1269
		    szsigcode), szsigcode);
1270
		vm_sync_icache(&(p->p_vmspace->vm_map), ((vm_offset_t)arginfo -
1271
		    szsigcode), szsigcode);
1272
	}
1270
1273
1271
	/*
1274
	/*
1272
	 * Copy the image path for the rtld.
1275
	 * Copy the image path for the rtld.

Return to bug 186236