View | Details | Raw Unified | Return to bug 241158
Collapse All | Expand All

(-)files/patch-src_osgDB_ConvertBase64.cpp (+11 lines)
Line 0 Link Here
1
--- src/osgDB/ConvertBase64.cpp.orig	2019-10-09 09:44:59 UTC
2
+++ src/osgDB/ConvertBase64.cpp
3
@@ -28,7 +28,7 @@ namespace osgDB
4
 
5
     int base64_decode_value(char value_in)
6
     {
7
-        static const char decoding[] = {62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-2,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51};
8
+        static const signed char decoding[] = {62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-2,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51};
9
         static const char decoding_size = sizeof(decoding);
10
         value_in -= 43;
11
         if (value_in < 0 || value_in > decoding_size) return -1;
(-)files/patch-src_osgPlugins_osgjs_Base64 (+11 lines)
Line 0 Link Here
1
--- src/osgPlugins/osgjs/Base64.orig	2019-10-09 12:55:34 UTC
2
+++ src/osgPlugins/osgjs/Base64
3
@@ -61,7 +61,7 @@ namespace base64
4
   extern const char* to_table;
5
   extern const char* to_table_end;
6
 
7
-  extern const char* from_table;
8
+  extern const signed char* from_table;
9
 
10
 
11
   template <class InputIterator, class OutputIterator>
(-)files/patch-src_osgPlugins_osgjs_Base64.cpp (+19 lines)
Line 0 Link Here
1
--- src/osgPlugins/osgjs/Base64.cpp.orig	2019-10-09 12:52:54 UTC
2
+++ src/osgPlugins/osgjs/Base64.cpp
3
@@ -18,7 +18,7 @@ namespace base64
4
   const char* to_table_end =
5
     _to_table + sizeof(_to_table);
6
 
7
-  const char _from_table[128] =
8
+  const signed char _from_table[128] =
9
   {
10
     -1, -1, -1, -1, -1, -1, -1, -1, // 0
11
     -1, -1, -1, -1, -1, -1, -1, -1, // 8
12
@@ -37,6 +37,6 @@ namespace base64
13
     41, 42, 43, 44, 45, 46, 47, 48, // 112
14
     49, 50, 51, -1, -1, -1, -1, -1  // 120
15
   };
16
-  const char* from_table = _from_table;
17
+  const signed char* from_table = _from_table;
18
 }
19
 

Return to bug 241158