oops. made a bit of a memory leak.

This commit is contained in:
giantpune 2010-02-05 06:27:52 +00:00
parent 826f4fd6ab
commit 7473c82be8
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@
<app version="1"> <app version="1">
<name> USB Loader GX</name> <name> USB Loader GX</name>
<coder>USB Loader GX Team</coder> <coder>USB Loader GX Team</coder>
<version>1.0 r906</version> <version>1.0 r907</version>
<release_date>201002050616</release_date> <release_date>201002050625</release_date>
<short_description>Loads games from USB-devices</short_description> <short_description>Loads games from USB-devices</short_description>
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times. <long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller. The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.

View File

@ -576,8 +576,9 @@ int TitleBrowser(u32 type) {
if (error || read != infilesize) { if (error || read != infilesize) {
WindowPrompt(tr("Error:"), tr("No data could be read."), tr("OK")); WindowPrompt(tr("Error:"), tr("No data could be read."), tr("OK"));
if(temp)free(temp);
} }
if(temp)free(temp);
} }