Blame grpc-1.39.0-python_wrapper-path.patch

2933935
diff -Naur grpc-1.39.0-original/test/core/http/httpcli_test.cc grpc-1.39.0/test/core/http/httpcli_test.cc
2933935
--- grpc-1.39.0-original/test/core/http/httpcli_test.cc	2021-07-20 18:39:39.000000000 -0400
2933935
+++ grpc-1.39.0/test/core/http/httpcli_test.cc	2021-08-02 11:38:43.215629892 -0400
2933935
@@ -165,9 +165,9 @@
2933935
         lslash = me + (lslash - me) - sizeof("http");
2933935
       }
2933935
       root = static_cast<char*>(
2933935
-          gpr_malloc(static_cast<size_t>(lslash - me + sizeof("/../.."))));
2933935
+          gpr_malloc(static_cast<size_t>(lslash - me + sizeof("/.."))));
2933935
       memcpy(root, me, static_cast<size_t>(lslash - me));
2933935
-      memcpy(root + (lslash - me), "/../..", sizeof("/../.."));
2933935
+      memcpy(root + (lslash - me), "/..", sizeof("/.."));
2933935
     } else {
2933935
       root = gpr_strdup(".");
2933935
     }
2933935
diff -Naur grpc-1.39.0-original/test/core/http/httpscli_test.cc grpc-1.39.0/test/core/http/httpscli_test.cc
2933935
--- grpc-1.39.0-original/test/core/http/httpscli_test.cc	2021-07-20 18:39:39.000000000 -0400
2933935
+++ grpc-1.39.0/test/core/http/httpscli_test.cc	2021-08-02 11:38:52.825572125 -0400
2933935
@@ -166,9 +166,9 @@
2933935
       lslash = me + (lslash - me) - sizeof("http");
2933935
     }
2933935
     root = static_cast<char*>(
2933935
-        gpr_malloc(static_cast<size_t>(lslash - me + sizeof("/../.."))));
2933935
+        gpr_malloc(static_cast<size_t>(lslash - me + sizeof("/.."))));
2933935
     memcpy(root, me, static_cast<size_t>(lslash - me));
2933935
-    memcpy(root + (lslash - me), "/../..", sizeof("/../.."));
2933935
+    memcpy(root + (lslash - me), "/..", sizeof("/.."));
2933935
   } else {
2933935
     root = gpr_strdup(".");
2933935
   }