od: fix -tx without length spec
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
b1585064fd
commit
11f3a8b7ed
@ -545,7 +545,8 @@ decode_one_format(const char *s_orig, const char *s, struct tspec *tspec)
|
||||
|
||||
c = *s++;
|
||||
p = strchr(CSIL, *s);
|
||||
if (!p) {
|
||||
/* if *s == NUL, p != NULL! Testcase: "od -tx" */
|
||||
if (!p || *p == '\0') {
|
||||
size = sizeof(int);
|
||||
if (isdigit(s[0])) {
|
||||
size = bb_strtou(s, &end, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user