SF [ 2050371 ] FCM>FM2 converter should release file handle
This commit is contained in:
parent
1fdc5e6083
commit
adb61c3586
|
@ -1,5 +1,6 @@
|
||||||
---version 2.0.2 released---
|
---version 2.0.2 released---
|
||||||
|
|
||||||
|
14-aug-2008 - zeromus - SF [ 2050371 ] FCM>FM2 converter should release file handle
|
||||||
13-aug-2008 - zeromus - restore ungzipping (and unzipping in sdl) capability which was lost when archive support was added
|
13-aug-2008 - zeromus - restore ungzipping (and unzipping in sdl) capability which was lost when archive support was added
|
||||||
13-aug-2008 - zeromus - add FORBID breakpoints - regions which block breakpoints from happening if they contain the PC
|
13-aug-2008 - zeromus - add FORBID breakpoints - regions which block breakpoints from happening if they contain the PC
|
||||||
13-aug-2008 - punkrockguy318 - SDL: fixed --input(1-4) options. input1 and 2 are regular inputs, input3 and 4 are famicom expansion inputs
|
13-aug-2008 - punkrockguy318 - SDL: fixed --input(1-4) options. input1 and 2 are regular inputs, input3 and 4 are famicom expansion inputs
|
||||||
|
|
|
@ -615,6 +615,7 @@ EFCM_CONVERTRESULT convert_fcm(MovieData& md, std::string fname)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
delete fp;
|
||||||
return FCM_CONVERTRESULT_STARTFROMSAVESTATENOTSUPPORTED;
|
return FCM_CONVERTRESULT_STARTFROMSAVESTATENOTSUPPORTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -668,5 +669,6 @@ EFCM_CONVERTRESULT convert_fcm(MovieData& md, std::string fname)
|
||||||
free(moviedata);
|
free(moviedata);
|
||||||
moviedata = 0;
|
moviedata = 0;
|
||||||
|
|
||||||
|
delete fp;
|
||||||
return FCM_CONVERTRESULT_SUCCESS;
|
return FCM_CONVERTRESULT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue