Return early in printreg() when the pointer is NULL. For FreeBSD, the
strings describing the drive status and error bits are so deficient that the pointer is always NULL. Reported by: Philippe Charnier <charnier@lirmm.fr>
This commit is contained in:
parent
90bb5ba61c
commit
29aea7f91f
@ -302,6 +302,8 @@ printreg(s, v, bits)
|
||||
printf("%s=%o", s, v);
|
||||
else
|
||||
printf("%s=%x", s, v);
|
||||
if (!bits)
|
||||
return;
|
||||
bits++;
|
||||
if (v && bits) {
|
||||
putchar('<');
|
||||
|
Loading…
Reference in New Issue
Block a user