diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-03-23 12:15:52 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-03-23 12:15:52 +0000 |
| commit | 65d50de5b7b0e6bffbf62487601a7af82172df49 (patch) | |
| tree | 802e089aa5e333209b355b10c1735a77792ca03a | |
| parent | 408613ca2220df3e59fb01d2d8cf922042ab682a (diff) | |
| download | rockbox-65d50de5b7b0e6bffbf62487601a7af82172df49.zip rockbox-65d50de5b7b0e6bffbf62487601a7af82172df49.tar.gz rockbox-65d50de5b7b0e6bffbf62487601a7af82172df49.tar.bz2 rockbox-65d50de5b7b0e6bffbf62487601a7af82172df49.tar.xz | |
Oops - correctly reset the bmp filenames
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16762 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/wps_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/wps_parser.c b/apps/gui/wps_parser.c index a791440..eb4b108 100644 --- a/apps/gui/wps_parser.c +++ b/apps/gui/wps_parser.c @@ -1483,7 +1483,7 @@ bool wps_data_load(struct wps_data *wps_data, #ifdef HAVE_LCD_BITMAP /* Set all filename pointers to NULL */ - memset(bmp_names, sizeof(bmp_names), 0); + memset(bmp_names, 0, sizeof(bmp_names)); #endif /* Skip leading UTF-8 BOM, if present. */ |