commit | 68e4f49c063fd96bf6ae58c040fdb50c7e9126f6 | [log] [tgz] |
---|---|---|
author | Christopher Ferris <cferris@google.com> | Sat Feb 23 01:38:27 2019 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sat Feb 23 01:38:27 2019 +0000 |
tree | 3a4c0b910478809d88d580551cfbb3229d08a8f8 | |
parent | 58239d002023143d43bdd1eb78f427ce985ad10b [diff] | |
parent | 503c17bae7c6fd8777b1c2e7f60bc828b709eb24 [diff] |
Merge "Fix wrong variable reference."
diff --git a/libc/bionic/malloc_heapprofd.cpp b/libc/bionic/malloc_heapprofd.cpp index c492bac..5129cd7 100644 --- a/libc/bionic/malloc_heapprofd.cpp +++ b/libc/bionic/malloc_heapprofd.cpp
@@ -202,7 +202,7 @@ if (__system_property_get(program_property, property_value) == 0) { return false; } - return program_property[0] != '\0'; + return property_value[0] != '\0'; } void HeapprofdInstallSignalHandler() {