aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorVladimir Chtchetkine <vchtchetkine@google.com>2012-04-12 13:08:34 -0700
committerVladimir Chtchetkine <vchtchetkine@google.com>2012-04-12 13:08:34 -0700
commitbdd020b108b63fcfccefb2905b9d0401f739981a (patch)
tree108bdce9225d2958ef50643299c27f25ed3c0054 /android
parent1a820e90d8848c6b0ac7c78b5a2e8b28c9738a3a (diff)
downloadexternal_qemu-bdd020b108b63fcfccefb2905b9d0401f739981a.zip
external_qemu-bdd020b108b63fcfccefb2905b9d0401f739981a.tar.gz
external_qemu-bdd020b108b63fcfccefb2905b9d0401f739981a.tar.bz2
Fixes debug output using an unitialized string buffer.
Change-Id: I1fee7e9f70600da4540744aa11f927bfc9c759e1
Diffstat (limited to 'android')
-rw-r--r--android/avd/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/avd/util.c b/android/avd/util.c
index 82145b5..a174ee3 100644
--- a/android/avd/util.c
+++ b/android/avd/util.c
@@ -183,7 +183,7 @@ _getSystemProperty( const char* propFile, const char* propName )
file = fopen(propFile, "rb");
if (file == NULL) {
- D("Could not open file: %s: %s", temp, strerror(errno));
+ D("Could not open file: %s: %s", propFile, strerror(errno));
return NULL;
}