Merge pull request #26062 from cleverca22/libredirect

libredirect: allow null paths

Changed files
+1
pkgs
build-support
libredirect
+1
pkgs/build-support/libredirect/libredirect.c
···
static const char * rewrite(const char * path, char * buf)
{
+
if (path == NULL) return path;
for (int n = 0; n < nrRedirects; ++n) {
int len = strlen(from[n]);
if (strncmp(path, from[n], len) != 0) continue;