Chameleon

Chameleon Commit Details

Date:2014-10-21 17:15:33 (9 years 5 months ago)
Author:ErmaC
Commit:2424
Parents: 2423
Message:Fit length for "Loading Darwin"
Changes:
M/trunk/i386/libsaio/disk.c
M/trunk/CHANGES

File differences

trunk/i386/libsaio/disk.c
15901590
15911591
15921592
1593
1593
1594
1595
1596
1597
1598
15941599
15951600
15961601
// getValueForKey uses const char for val
// so copy it and trim
*str = '\0';
strncat(str, val, MIN(len, 4));
// crazybirdy
if (len > 4 && (val[3] == '1')) {
strncat(str, val, MIN(len, 5));
} else {
strncat(str, val, MIN(len, 4));
}
} else {
valid = false;
}
trunk/CHANGES
1
12
23
34
- crazybirdy : Fit length for "Loading Darwin"
- meklort : Update align directives to 2^(old_align)
- Ermac : Bump svn to 2.3
- ErmaC : Update efi Header

Archive Download the corresponding diff file

Revision: 2424