summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-11-19 22:00:18 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-19 22:00:18 +0000
commit6309cb35f79188319429a6110a10bd933136421b (patch)
treead1a6a675264264644c266ee35f70bdb4a128d00 /adb
parent29e142760d238476943ca7afcc3bebe937a524ff (diff)
parent2097e9a1491e850545cd0c38522c22dafd2cf6af (diff)
downloadsystem_core-6309cb35f79188319429a6110a10bd933136421b.zip
system_core-6309cb35f79188319429a6110a10bd933136421b.tar.gz
system_core-6309cb35f79188319429a6110a10bd933136421b.tar.bz2
am 2097e9a1: am 20860a28: Merge "Fix building on modern versions of Xcode and OS X."
* commit '2097e9a1491e850545cd0c38522c22dafd2cf6af': Fix building on modern versions of Xcode and OS X.
Diffstat (limited to 'adb')
-rw-r--r--adb/get_my_path_darwin.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/adb/get_my_path_darwin.c b/adb/get_my_path_darwin.c
index 5b95d15..9141b57 100644
--- a/adb/get_my_path_darwin.c
+++ b/adb/get_my_path_darwin.c
@@ -19,12 +19,12 @@
void get_my_path(char *s, size_t maxLen)
{
- ProcessSerialNumber psn;
- GetCurrentProcess(&psn);
- CFDictionaryRef dict;
- dict = ProcessInformationCopyDictionary(&psn, 0xffffffff);
- CFStringRef value = (CFStringRef)CFDictionaryGetValue(dict,
- CFSTR("CFBundleExecutable"));
- CFStringGetCString(value, s, maxLen, kCFStringEncodingUTF8);
+ CFBundleRef mainBundle = CFBundleGetMainBundle();
+ CFURLRef bundleURL = CFBundleCopyBundleURL(mainBundle);
+ CFStringRef bundlePathString = CFURLCopyFileSystemPath(bundleURL, kCFURLPOSIXPathStyle);
+ CFRelease(bundleURL);
+
+ CFStringGetCString(bundlePathString, s, maxLen, kCFStringEncodingASCII);
+ CFRelease(bundlePathString);
}