summaryrefslogtreecommitdiff
path: root/external/redland/raptor/ubsan.patch
blob: 54b041e80f1f6f339ad44138096b4504be3f976b (plain)
1
2
3
4
5
6
7
8
9
10
11
--- src/raptor_rfc2396.c
+++ src/raptor_rfc2396.c
@@ -386,7 +386,7 @@
   } 
 
   
-  if(prev && s == (cur+2) && cur[0] == '.' && cur[1] == '.') {
+  if(prev && cur && s == (cur+2) && cur[0] == '.' && cur[1] == '.') {
     /* Remove <component>/.. at the end of the path */
     *prev = '\0';
     path_len -= (s-prev);