mirror of
https://github.com/sheumann/hush.git
synced 2025-01-13 21:31:51 +00:00
Felipe Kellermann noticed a missing `break'.
This commit is contained in:
parent
9768a65eb4
commit
ccfc44806d
@ -52,6 +52,8 @@ char bb_process_escape_sequence(const char **ptr)
|
|||||||
r = n * 16 + hextobin(*q);
|
r = n * 16 + hextobin(*q);
|
||||||
} else if (isodigit(*q)) {
|
} else if (isodigit(*q)) {
|
||||||
r = n * 8 + octtobin(*q);
|
r = n * 8 + octtobin(*q);
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
if (r <= UCHAR_MAX) {
|
if (r <= UCHAR_MAX) {
|
||||||
n = r;
|
n = r;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user