Remove code that can't be reached.
This commit is contained in:
parent
c052576821
commit
565bc33332
@ -150,9 +150,7 @@ int uudecode_main(int argc, char **argv)
|
|||||||
while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
|
while ((line = bb_get_chomped_line_from_file(src_stream)) != NULL) {
|
||||||
char *line_ptr = NULL;
|
char *line_ptr = NULL;
|
||||||
|
|
||||||
if (line == NULL) {
|
if (strncmp(line, "begin-base64 ", 13) == 0) {
|
||||||
break;
|
|
||||||
} else if (strncmp(line, "begin-base64 ", 13) == 0) {
|
|
||||||
line_ptr = line + 13;
|
line_ptr = line + 13;
|
||||||
decode_fn_ptr = read_base64;
|
decode_fn_ptr = read_base64;
|
||||||
} else if (strncmp(line, "begin ", 6) == 0) {
|
} else if (strncmp(line, "begin ", 6) == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user