Commit ec386cbc authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

haserl: bump 0.9.x version



buffer overflow fix is now upstream

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent bb14fc40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,4 +30,4 @@ endchoice
config BR2_PACKAGE_HASERL_VERSION
	string
	default "0.8.0"		if BR2_PACKAGE_HASERL_VERSION_0_8_X
	default "0.9.25"	if BR2_PACKAGE_HASERL_VERSION_0_9_X
	default "0.9.26"	if BR2_PACKAGE_HASERL_VERSION_0_9_X
+0 −19
Original line number Diff line number Diff line
haserl: array vars fix

Fix buffer overflow error. Len is the length of the name= part of the
name=value string, not the value part.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Index: haserl-0.9.25/src/haserl.c
===================================================================
--- haserl-0.9.25.orig/src/haserl.c	2009-07-20 15:05:26.000000000 +0200
+++ haserl-0.9.25/src/haserl.c	2009-07-20 15:06:05.000000000 +0200
@@ -269,7 +269,7 @@
 	      /* if an array, create a new string with this
 	       * value added to the end of the old value(s) 
 	       */
-	      temp = xmalloc (strlen (cur->buf) + len + 1);
+	      temp = xmalloc (strlen (cur->buf) + strlen(entry) - len + 1);
 	      memmove (temp, cur->buf, strlen (cur->buf) + 1);
 	      strcat (temp, "\n");
 	      strcat (temp, str + keylen + 3);