summaryrefslogtreecommitdiffstats
path: root/package/haserl
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2009-08-01 23:29:02 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2009-08-01 23:29:02 +0200
commitec386cbcdf437eff59432431289a6cf045c35910 (patch)
tree844633829db469af7dd7fce153d5eee897446fe5 /package/haserl
parentbb14fc40195ec41824f9a17c537e3b5d2fa7a3ae (diff)
downloadbuildroot-novena-ec386cbcdf437eff59432431289a6cf045c35910.tar.gz
buildroot-novena-ec386cbcdf437eff59432431289a6cf045c35910.zip
haserl: bump 0.9.x version
buffer overflow fix is now upstream Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/haserl')
-rw-r--r--package/haserl/Config.in2
-rw-r--r--package/haserl/haserl-0.9.25/haserl-0.9.25-array-vars-fix.patch19
2 files changed, 1 insertions, 20 deletions
diff --git a/package/haserl/Config.in b/package/haserl/Config.in
index 0a5847857..21ab63c9c 100644
--- a/package/haserl/Config.in
+++ b/package/haserl/Config.in
@@ -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
diff --git a/package/haserl/haserl-0.9.25/haserl-0.9.25-array-vars-fix.patch b/package/haserl/haserl-0.9.25/haserl-0.9.25-array-vars-fix.patch
deleted file mode 100644
index e6c959a66..000000000
--- a/package/haserl/haserl-0.9.25/haserl-0.9.25-array-vars-fix.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-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);