summaryrefslogtreecommitdiff
path: root/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-common-misc-uri.cpp
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2015-10-20 20:09:58 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2015-10-20 20:09:58 +0000
commit7393b3be86e2f80f2a75b81058070e00d817469c (patch)
tree2e894540cf6e27d23cc98a66522c0e69591e5805 /emulators/virtualbox-ose/files/patch-src-VBox-Runtime-common-misc-uri.cpp
parentRemvove expired port: (diff)
Update to 4.3.32.
MFH: 2015Q4
Diffstat (limited to 'emulators/virtualbox-ose/files/patch-src-VBox-Runtime-common-misc-uri.cpp')
-rw-r--r--emulators/virtualbox-ose/files/patch-src-VBox-Runtime-common-misc-uri.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-common-misc-uri.cpp b/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-common-misc-uri.cpp
deleted file mode 100644
index 54e3c3a221a0..000000000000
--- a/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-common-misc-uri.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/VBox/Runtime/common/misc/uri.cpp.orig 2013-12-18 11:10:34.000000000 -0500
-+++ src/VBox/Runtime/common/misc/uri.cpp 2013-12-19 20:57:32.000000000 -0500
-@@ -132,7 +132,10 @@
- /* % encoding means the percent sign and exactly 2 hexadecimal
- * digits describing the ASCII number of the character. */
- ++iIn;
-- char szNum[] = { pszString[iIn++], pszString[iIn++], '\0' };
-+ char szNum[3];
-+ szNum[0] = pszString[iIn++];
-+ szNum[1] = pszString[iIn++];
-+ szNum[2] = '\0';
- uint8_t u8;
- rc = RTStrToUInt8Ex(szNum, NULL, 16, &u8);
- if (RT_FAILURE(rc))