Felipe Kellermann noticed a missing `break'.

This commit is contained in:
Eric Andersen 2004-07-27 16:45:46 +00:00
parent 9768a65eb4
commit ccfc44806d

View File

@ -52,6 +52,8 @@ char bb_process_escape_sequence(const char **ptr)
r = n * 16 + hextobin(*q);
} else if (isodigit(*q)) {
r = n * 8 + octtobin(*q);
} else {
break;
}
if (r <= UCHAR_MAX) {
n = r;