mirror of
https://github.com/sheumann/hush.git
synced 2025-08-10 00:25:24 +00:00
Felipe Kellermann noticed a missing `break'.
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user