mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 23:28:57 +00:00
Give correct results for SYSCTL_LONG arrays when sizeof(int) != sizeof(long)
This fixes unaligned access on alpha for, eg, sysctl kern.ipc.mbtypes.
This commit is contained in:
parent
fc11653f20
commit
3c884b5097
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67476
@ -422,8 +422,8 @@ show_var(int *oid, int nlen)
|
||||
else
|
||||
printf("%s%ld", val, *(long *)p);
|
||||
val = " ";
|
||||
len -= sizeof (int);
|
||||
p += sizeof (int);
|
||||
len -= sizeof (long);
|
||||
p += sizeof (long);
|
||||
}
|
||||
return (0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user