diff options
author | Elliott Hughes <enh@google.com> | 2016-02-20 01:30:19 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-02-20 01:30:19 +0100 |
commit | fa9af7dae68aad09ed624a9786f6cd57713f7b7f (patch) | |
tree | 0abb34f49ed80c2bac5815e28d4d6297dcc8432b /minui | |
parent | Merge "applypatch: Add libimgpatch.pc" (diff) | |
parent | Fix minui cleanup path on error. (diff) | |
download | android_bootable_recovery-fa9af7dae68aad09ed624a9786f6cd57713f7b7f.tar android_bootable_recovery-fa9af7dae68aad09ed624a9786f6cd57713f7b7f.tar.gz android_bootable_recovery-fa9af7dae68aad09ed624a9786f6cd57713f7b7f.tar.bz2 android_bootable_recovery-fa9af7dae68aad09ed624a9786f6cd57713f7b7f.tar.lz android_bootable_recovery-fa9af7dae68aad09ed624a9786f6cd57713f7b7f.tar.xz android_bootable_recovery-fa9af7dae68aad09ed624a9786f6cd57713f7b7f.tar.zst android_bootable_recovery-fa9af7dae68aad09ed624a9786f6cd57713f7b7f.zip |
Diffstat (limited to 'minui')
-rw-r--r-- | minui/resources.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/minui/resources.cpp b/minui/resources.cpp index fdbe554fe..8489d60ef 100644 --- a/minui/resources.cpp +++ b/minui/resources.cpp @@ -283,7 +283,7 @@ int res_create_multi_display_surface(const char* name, int* frames, int* fps, goto exit; } - surface = reinterpret_cast<GRSurface**>(malloc(*frames * sizeof(GRSurface*))); + surface = reinterpret_cast<GRSurface**>(calloc(*frames, sizeof(GRSurface*))); if (surface == NULL) { result = -8; goto exit; @@ -318,7 +318,7 @@ exit: if (result < 0) { if (surface) { for (int i = 0; i < *frames; ++i) { - if (surface[i]) free(surface[i]); + free(surface[i]); } free(surface); } @@ -421,7 +421,7 @@ int res_create_localized_alpha_surface(const char* name, 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]; + __unused int len = row[4]; char* loc = reinterpret_cast<char*>(&row[5]); if (y+1+h >= height || matches_locale(loc, locale)) { |