Fix ccpmp.bin backup in ChinaChippatcher (thanks to Aaron DeMille)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22699 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
498043d552
commit
98f5c30b05
1 changed files with 2 additions and 1 deletions
|
@ -155,6 +155,7 @@ int chinachip_patch(const char* firmware, const char* bootloader,
|
|||
|
||||
if(ccpmp_backup)
|
||||
{
|
||||
int ccpmp_data_pos = ccpmp_pos + 9;
|
||||
bd = fopen(ccpmp_backup, "wb");
|
||||
if(!bd)
|
||||
{
|
||||
|
@ -163,7 +164,7 @@ int chinachip_patch(const char* firmware, const char* bootloader,
|
|||
}
|
||||
|
||||
INFO(tr("Writing %d bytes to %s..."), ccpmp_size, ccpmp_backup);
|
||||
if(fwrite(&buf[ccpmp_pos], ccpmp_size, 1, bd) != 1)
|
||||
if(fwrite(&buf[ccpmp_data_pos], ccpmp_size, 1, bd) != 1)
|
||||
{
|
||||
ERR(tr("Can't write to file %s!"), ccpmp_backup);
|
||||
goto err;
|
||||
|
|
Loading…
Reference in a new issue