Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CFRelease (0.12 sec)

  1. src/runtime/cgo/gcc_darwin_arm64.c

    		return;
    	}
    	CFStringRef url_str_ref = CFURLGetString(url_ref);
    	char buf[MAXPATHLEN];
    	Boolean res = CFStringGetCString(url_str_ref, buf, sizeof(buf), kCFStringEncodingUTF8);
    	CFRelease(url_ref);
    	if (!res) {
    		fprintf(stderr, "runtime/cgo: cannot get URL string\n");
    		return;
    	}
    
    	// url is of the form "file:///path/to/Info.plist".
    	// strip it down to the working directory "/path/to".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top