[Fix Red] consolidate bmp_read function between icons and skin_parser
Change-Id: I642ec2272ac94233127d8670f6adee938e53bce0
This commit is contained in:
parent
88f6628423
commit
1387d6480e
1 changed files with 2 additions and 1 deletions
|
@ -1912,7 +1912,7 @@ static int buflib_move_callback(int handle, void* current, void* new)
|
||||||
|
|
||||||
static int load_skin_bmp(struct wps_data *wps_data, struct bitmap *bitmap, char* bmpdir)
|
static int load_skin_bmp(struct wps_data *wps_data, struct bitmap *bitmap, char* bmpdir)
|
||||||
{
|
{
|
||||||
static struct buflib_callbacks buflib_ops = {buflib_move_callback, NULL, NULL};
|
|
||||||
(void)wps_data; /* only needed for remote targets */
|
(void)wps_data; /* only needed for remote targets */
|
||||||
char img_path[MAX_PATH];
|
char img_path[MAX_PATH];
|
||||||
|
|
||||||
|
@ -1929,6 +1929,7 @@ static int load_skin_bmp(struct wps_data *wps_data, struct bitmap *bitmap, char*
|
||||||
close(fd);
|
close(fd);
|
||||||
return 1;
|
return 1;
|
||||||
#else /* load the image */
|
#else /* load the image */
|
||||||
|
static struct buflib_callbacks buflib_ops = {buflib_move_callback, NULL, NULL};
|
||||||
int handle;
|
int handle;
|
||||||
int bmpformat;
|
int bmpformat;
|
||||||
ssize_t buf_reqd;
|
ssize_t buf_reqd;
|
||||||
|
|
Loading…
Reference in a new issue