Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b79a5f91 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Fix issue #69820174: The size of /proc/meminfo is larger than its stored buffer.

Make it larger.

Bug: 69820174
Test: booted and ran.
Change-Id: Ic0d7db54e9f34b11f81b3b4fcd8cac15753a548c
parent 8474c45b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -747,7 +747,7 @@ static long long get_zram_mem_used()

static void android_os_Debug_getMemInfo(JNIEnv *env, jobject clazz, jlongArray out)
{
    char buffer[1024];
    char buffer[4096];
    size_t numFound = 0;

    if (out == NULL) {