Changeset 57825 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Sep 18, 2015 10:35:41 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/uri.cpp
r57726 r57825 678 678 679 679 680 /* temporarily kept around till Andy stops using it. */681 RTDECL(char *) RTUriPath(const char *pszUri)682 {683 RTURIPARSED Parsed;684 int rc = rtUriParse(pszUri, &Parsed);685 if (RT_SUCCESS(rc))686 if (Parsed.cchPath)687 return rtUriPercentDecodeN(&pszUri[Parsed.offPath], Parsed.cchPath);688 return NULL;689 }690 691 692 680 RTDECL(char *) RTUriFileCreate(const char *pszPath) 693 681 {
Note:
See TracChangeset
for help on using the changeset viewer.