summaryrefslogtreecommitdiffstats
path: root/minui/resources.cpp
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2016-11-10 02:12:43 +0100
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-11-10 02:12:43 +0100
commitf78a6cb5060298c22a12b1117deb8d1d12d8e129 (patch)
treed94a38c2109de3c09b9ae632cc9c4a92eabf382d /minui/resources.cpp
parentMerge "Touch blocks in care_map in update_verifier" am: 3605a072bc -s ours am: 96c3c32b66 am: b86af2577c (diff)
parentUse static_cast to cast pointers returned by malloc/calloc/realloc/mmap. (diff)
downloadandroid_bootable_recovery-f78a6cb5060298c22a12b1117deb8d1d12d8e129.tar
android_bootable_recovery-f78a6cb5060298c22a12b1117deb8d1d12d8e129.tar.gz
android_bootable_recovery-f78a6cb5060298c22a12b1117deb8d1d12d8e129.tar.bz2
android_bootable_recovery-f78a6cb5060298c22a12b1117deb8d1d12d8e129.tar.lz
android_bootable_recovery-f78a6cb5060298c22a12b1117deb8d1d12d8e129.tar.xz
android_bootable_recovery-f78a6cb5060298c22a12b1117deb8d1d12d8e129.tar.zst
android_bootable_recovery-f78a6cb5060298c22a12b1117deb8d1d12d8e129.zip
Diffstat (limited to 'minui/resources.cpp')
-rw-r--r--minui/resources.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/minui/resources.cpp b/minui/resources.cpp
index 730b05f13..c723476cc 100644
--- a/minui/resources.cpp
+++ b/minui/resources.cpp
@@ -37,7 +37,7 @@
static GRSurface* malloc_surface(size_t data_size) {
size_t size = sizeof(GRSurface) + data_size + SURFACE_DATA_ALIGNMENT;
- unsigned char* temp = reinterpret_cast<unsigned char*>(malloc(size));
+ unsigned char* temp = static_cast<unsigned char*>(malloc(size));
if (temp == NULL) return NULL;
GRSurface* surface = reinterpret_cast<GRSurface*>(temp);
surface->data = temp + sizeof(GRSurface) +
@@ -221,7 +221,7 @@ int res_create_display_surface(const char* name, GRSurface** pSurface) {
png_set_bgr(png_ptr);
#endif
- p_row = reinterpret_cast<unsigned char*>(malloc(width * 4));
+ p_row = static_cast<unsigned char*>(malloc(width * 4));
for (y = 0; y < height; ++y) {
png_read_row(png_ptr, p_row, NULL);
transform_rgb_to_draw(p_row, surface->data + y * surface->row_bytes, channels, width);
@@ -281,7 +281,7 @@ int res_create_multi_display_surface(const char* name, int* frames, int* fps,
goto exit;
}
- surface = reinterpret_cast<GRSurface**>(calloc(*frames, sizeof(GRSurface*)));
+ surface = static_cast<GRSurface**>(calloc(*frames, sizeof(GRSurface*)));
if (surface == NULL) {
result = -8;
goto exit;
@@ -298,7 +298,7 @@ int res_create_multi_display_surface(const char* name, int* frames, int* fps,
png_set_bgr(png_ptr);
#endif
- p_row = reinterpret_cast<unsigned char*>(malloc(width * 4));
+ p_row = static_cast<unsigned char*>(malloc(width * 4));
for (y = 0; y < height; ++y) {
png_read_row(png_ptr, p_row, NULL);
int frame = y % *frames;