mailing list of musl libc
 help / color / mirror / code / Atom feed
8a87b20aea0b564a5a4449c16402808c662941fa blob 259 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
 
#include <resolv.h>

int dn_skipname(const unsigned char *s, const unsigned char *end)
{
	const unsigned char *p = s;
	while (p < end)
		if (!*p) return p-s+1;
		else if (*p>=192)
			if (p+1<end) return p-s+2;
			else break;
		else p += *p + 1;
	return -1;
}
debug log:

solving 8a87b20a ...
found 8a87b20a in https://inbox.vuxu.org/musl/MW2PR2101MB097003E625DE9CEA297A1DD7D04C0@MW2PR2101MB0970.namprd21.prod.outlook.com/
found d54c2e5d in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 d54c2e5d04d941937743a0021c106ffd5afc34da	src/network/dn_skipname.c

applying [1/1] https://inbox.vuxu.org/musl/MW2PR2101MB097003E625DE9CEA297A1DD7D04C0@MW2PR2101MB0970.namprd21.prod.outlook.com/
diff --git a/src/network/dn_skipname.c b/src/network/dn_skipname.c
index d54c2e5d..8a87b20a 100644

Checking patch src/network/dn_skipname.c...
Applied patch src/network/dn_skipname.c cleanly.

index at:
100644 8a87b20aea0b564a5a4449c16402808c662941fa	src/network/dn_skipname.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).