Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/coreutils/md5_sha1_sum.c

    r3232 r3621  
    152152        }
    153153        hash_value = NULL;
    154         if (count == 0) {
     154        if (count < 0)
     155            bb_perror_msg("can't read '%s'", filename);
     156        else /* count == 0 */ {
    155157            final(&context, in_buf);
    156158            hash_value = hash_bin_to_hex(in_buf, hash_len);
Note: See TracChangeset for help on using the changeset viewer.