All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/cjson: bump to version 1.7.15
@ 2021-08-25 19:38 Fabrice Fontaine
  2021-08-26 20:54 ` Arnout Vandecappelle
  2021-09-07 10:11 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2021-08-25 19:38 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Fixes:
- Fix potential core dumped for strrchr
- Fix null pointer crash in cJSON_CreateXxArray
- Fix several null pointer problems on allocation failure
- Fix a possible dereference of null pointer

https://github.com/DaveGamble/cJSON/releases/tag/v1.7.15

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/cjson/cjson.hash | 2 +-
 package/cjson/cjson.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/cjson/cjson.hash b/package/cjson/cjson.hash
index 5133c15a4f..c39e884cdd 100644
--- a/package/cjson/cjson.hash
+++ b/package/cjson/cjson.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256  fb50a663eefdc76bafa80c82bc045af13b1363e8f45cec8b442007aef6a41343  cjson-1.7.14.tar.gz
+sha256  5308fd4bd90cef7aa060558514de6a1a4a0819974a26e6ed13973c5f624c24b2  cjson-1.7.15.tar.gz
 sha256  a36dda207c36db5818729c54e7ad4e8b0c6fba847491ba64f372c1a2037b6d5c  LICENSE
diff --git a/package/cjson/cjson.mk b/package/cjson/cjson.mk
index daa498f9ff..ac8db5701f 100644
--- a/package/cjson/cjson.mk
+++ b/package/cjson/cjson.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-CJSON_VERSION = 1.7.14
+CJSON_VERSION = 1.7.15
 CJSON_SITE = $(call github,DaveGamble,cjson,v$(CJSON_VERSION))
 CJSON_INSTALL_STAGING = YES
 CJSON_LICENSE = MIT
-- 
2.32.0

_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/cjson: bump to version 1.7.15
  2021-08-25 19:38 [Buildroot] [PATCH 1/1] package/cjson: bump to version 1.7.15 Fabrice Fontaine
@ 2021-08-26 20:54 ` Arnout Vandecappelle
  2021-09-07 10:11 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2021-08-26 20:54 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot



On 25/08/2021 21:38, Fabrice Fontaine wrote:
> Fixes:
> - Fix potential core dumped for strrchr
> - Fix null pointer crash in cJSON_CreateXxArray
> - Fix several null pointer problems on allocation failure
> - Fix a possible dereference of null pointer
> 
> https://github.com/DaveGamble/cJSON/releases/tag/v1.7.15
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

 Applied to master, thanks.

 Regards,
 Arnout

> ---
>  package/cjson/cjson.hash | 2 +-
>  package/cjson/cjson.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/cjson/cjson.hash b/package/cjson/cjson.hash
> index 5133c15a4f..c39e884cdd 100644
> --- a/package/cjson/cjson.hash
> +++ b/package/cjson/cjson.hash
> @@ -1,3 +1,3 @@
>  # Locally computed:
> -sha256  fb50a663eefdc76bafa80c82bc045af13b1363e8f45cec8b442007aef6a41343  cjson-1.7.14.tar.gz
> +sha256  5308fd4bd90cef7aa060558514de6a1a4a0819974a26e6ed13973c5f624c24b2  cjson-1.7.15.tar.gz
>  sha256  a36dda207c36db5818729c54e7ad4e8b0c6fba847491ba64f372c1a2037b6d5c  LICENSE
> diff --git a/package/cjson/cjson.mk b/package/cjson/cjson.mk
> index daa498f9ff..ac8db5701f 100644
> --- a/package/cjson/cjson.mk
> +++ b/package/cjson/cjson.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -CJSON_VERSION = 1.7.14
> +CJSON_VERSION = 1.7.15
>  CJSON_SITE = $(call github,DaveGamble,cjson,v$(CJSON_VERSION))
>  CJSON_INSTALL_STAGING = YES
>  CJSON_LICENSE = MIT
> 
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/cjson: bump to version 1.7.15
  2021-08-25 19:38 [Buildroot] [PATCH 1/1] package/cjson: bump to version 1.7.15 Fabrice Fontaine
  2021-08-26 20:54 ` Arnout Vandecappelle
@ 2021-09-07 10:11 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-09-07 10:11 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 > - Fix potential core dumped for strrchr
 > - Fix null pointer crash in cJSON_CreateXxArray
 > - Fix several null pointer problems on allocation failure
 > - Fix a possible dereference of null pointer

 > https://github.com/DaveGamble/cJSON/releases/tag/v1.7.15

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2021.02.x and 2021.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@lists.buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-09-07 10:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-25 19:38 [Buildroot] [PATCH 1/1] package/cjson: bump to version 1.7.15 Fabrice Fontaine
2021-08-26 20:54 ` Arnout Vandecappelle
2021-09-07 10:11 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.