summaryrefslogtreecommitdiffstats
path: root/minui
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2016-02-10 22:47:32 +0100
committerYabin Cui <yabinc@google.com>2016-02-11 00:32:19 +0100
commit4425c1d960234ae5db904b199ccf39c4ec64b37f (patch)
treedf49745acfb355aefb64c160a04ba47bb63dda5b /minui
parentMerge "verifier_test: Suppress the unused parameter warnings." (diff)
downloadandroid_bootable_recovery-4425c1d960234ae5db904b199ccf39c4ec64b37f.tar
android_bootable_recovery-4425c1d960234ae5db904b199ccf39c4ec64b37f.tar.gz
android_bootable_recovery-4425c1d960234ae5db904b199ccf39c4ec64b37f.tar.bz2
android_bootable_recovery-4425c1d960234ae5db904b199ccf39c4ec64b37f.tar.lz
android_bootable_recovery-4425c1d960234ae5db904b199ccf39c4ec64b37f.tar.xz
android_bootable_recovery-4425c1d960234ae5db904b199ccf39c4ec64b37f.tar.zst
android_bootable_recovery-4425c1d960234ae5db904b199ccf39c4ec64b37f.zip
Diffstat (limited to 'minui')
-rw-r--r--minui/resources.cpp22
1 files changed, 9 insertions, 13 deletions
diff --git a/minui/resources.cpp b/minui/resources.cpp
index 63a0dff28..fdbe554fe 100644
--- a/minui/resources.cpp
+++ b/minui/resources.cpp
@@ -28,6 +28,7 @@
#include <linux/fb.h>
#include <linux/kd.h>
+#include <vector>
#include <png.h>
#include "minui.h"
@@ -398,18 +399,13 @@ int res_create_localized_alpha_surface(const char* name,
png_infop info_ptr = NULL;
png_uint_32 width, height;
png_byte channels;
- unsigned char* row;
png_uint_32 y;
+ std::vector<unsigned char> row;
*pSurface = NULL;
if (locale == NULL) {
- surface = malloc_surface(0);
- surface->width = 0;
- surface->height = 0;
- surface->row_bytes = 0;
- surface->pixel_bytes = 1;
- goto exit;
+ return result;
}
result = open_png(name, &png_ptr, &info_ptr, &width, &height, &channels);
@@ -420,13 +416,13 @@ int res_create_localized_alpha_surface(const char* name,
goto exit;
}
- row = reinterpret_cast<unsigned char*>(malloc(width));
+ row.resize(width);
for (y = 0; y < height; ++y) {
- png_read_row(png_ptr, row, NULL);
+ png_read_row(png_ptr, row.data(), NULL);
int w = (row[1] << 8) | row[0];
int h = (row[3] << 8) | row[2];
int len = row[4];
- char* loc = (char*)row+5;
+ char* loc = reinterpret_cast<char*>(&row[5]);
if (y+1+h >= height || matches_locale(loc, locale)) {
printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y);
@@ -443,8 +439,8 @@ int res_create_localized_alpha_surface(const char* name,
int i;
for (i = 0; i < h; ++i, ++y) {
- png_read_row(png_ptr, row, NULL);
- memcpy(surface->data + i*w, row, w);
+ png_read_row(png_ptr, row.data(), NULL);
+ memcpy(surface->data + i*w, row.data(), w);
}
*pSurface = reinterpret_cast<GRSurface*>(surface);
@@ -452,7 +448,7 @@ int res_create_localized_alpha_surface(const char* name,
} else {
int i;
for (i = 0; i < h; ++i, ++y) {
- png_read_row(png_ptr, row, NULL);
+ png_read_row(png_ptr, row.data(), NULL);
}
}
}