Thread (1 message) 1 message, 1 author, 2011-06-21

[PATCH 4/4] ARM: zImage: allow supplementing appended DTB with traditional ATAG data

From: nico@fluxnic.net (Nicolas Pitre)
Date: 2011-06-21 23:35:45
Also in: linux-devicetree

Possibly related (same subject, not in this thread)

On Tue, 21 Jun 2011, David Brown wrote:
On Tue, Jun 21 2011, David Brown wrote:
quoted
On Mon, Jun 20 2011, Nicolas Pitre wrote:
quoted
+void *memmove(void *__dest, __const void *__src, size_t __n)
+{
+	unsigned char *d = __dest;
+	const unsigned char *s = __src;
+
+	if (__dest == __src)
+		return __dest;
+
+	if (__dest < __src)
+		return memcpy(__dest, __src, __n);
+
+	while (--__n >= 0)
+		d[__n] = s[__n];
+
+	return __dest;
+}
Ahh, found it.  size_t is unsigned, so the while loop never terminates.
Something like:

	for (; __n; __n--)
		d[__n] = s[__n];
Ugh.  How about if I don't replace a broken version with a different
broken version.
Blah.  I'll try to fetch the generic version in lib/string.c instead of 
duplicating that stuff.

Thanks for investigating.  I only was able to compile-test the thing so 
far.  ;-)


Nicolas
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help