From bdd020b108b63fcfccefb2905b9d0401f739981a Mon Sep 17 00:00:00 2001 From: Vladimir Chtchetkine Date: Thu, 12 Apr 2012 13:08:34 -0700 Subject: Fixes debug output using an unitialized string buffer. Change-Id: I1fee7e9f70600da4540744aa11f927bfc9c759e1 --- android/avd/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android') 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; } -- cgit v1.1