1
0
mirror of https://github.com/openbsd/src.git synced 2026-06-18 07:13:36 +02:00

Use the correct struct itemerval when recording the old value for ktrace.

This fixes a potential information leak from an uninitializes stack
variable.
Found by Frank Denis using the Swival Security Scanner.

ok deraadt@
This commit is contained in:
kettenis
2026-05-05 12:28:59 +00:00
parent afd2c39274
commit a80b42e23f
+2 -2
View File
@@ -1,4 +1,4 @@
/* $OpenBSD: kern_time.c,v 1.170 2024/10/03 10:18:29 claudio Exp $ */
/* $OpenBSD: kern_time.c,v 1.171 2026/05/05 12:28:59 kettenis Exp $ */
/* $NetBSD: kern_time.c,v 1.20 1996/02/18 11:57:06 fvdl Exp $ */
/*
@@ -665,7 +665,7 @@ sys_setitimer(struct proc *p, void *v, register_t *retval)
error = copyout(&olditv, SCARG(uap, oitv), sizeof(olditv));
#ifdef KTRACE
if (error == 0 && KTRPOINT(p, KTR_STRUCT))
ktritimerval(p, &aitv);
ktritimerval(p, &olditv);
#endif
return error;
}