mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
package/json-c: bump to version 0.18
Changelog - https://github.com/json-c/json-c/compare/json-c-0.17-20230812...json-c-0.18-20240915
Drop 0001-json_pointer.c-initialize-idx.patch.
Upstream commit - 7ff7eab603
Signed-off-by: Akhilesh Nema <nemaakhilesh@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
94f676021d
commit
d5f0794d15
@@ -1,37 +0,0 @@
|
||||
From 7ff7eab603611c65b3110dcb1b0caf5cc68b07a3 Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Wed, 8 Nov 2023 22:42:48 +0100
|
||||
Subject: [PATCH] json_pointer.c: initialize idx
|
||||
|
||||
Fix the following build failure with gcc 5:
|
||||
|
||||
/home/thomas/autobuild/instance-2/output-1/build/json-c-0.17/json_pointer.c: In function 'json_pointer_result_get_recursive':
|
||||
/home/thomas/autobuild/instance-2/output-1/build/json-c-0.17/json_pointer.c:193:25: error: 'idx' may be used uninitialized in this function [-Werror=maybe-uninitialized]
|
||||
res->index_in_parent = idx;
|
||||
^
|
||||
|
||||
Fixes:
|
||||
- http://autobuild.buildroot.org/results/523b35a979d59121fe4e18c38171792b06233940/
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Upstream: https://github.com/json-c/json-c/pull/839
|
||||
---
|
||||
json_pointer.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/json_pointer.c b/json_pointer.c
|
||||
index 89e9e21..0ac8aaa 100644
|
||||
--- a/json_pointer.c
|
||||
+++ b/json_pointer.c
|
||||
@@ -158,7 +158,7 @@ static int json_pointer_result_get_recursive(struct json_object *obj, char *path
|
||||
struct json_pointer_get_result *res)
|
||||
{
|
||||
struct json_object *parent_obj = obj;
|
||||
- size_t idx;
|
||||
+ size_t idx = 0;
|
||||
char *endp;
|
||||
int rc;
|
||||
|
||||
--
|
||||
2.42.0
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# From https://github.com/json-c/json-c/wiki
|
||||
sha256 7550914d58fb63b2c3546f3ccfbe11f1c094147bd31a69dcd23714d7956159e6 json-c-0.17.tar.gz
|
||||
sha256 876ab046479166b869afc6896d288183bbc0e5843f141200c677b3e8dfb11724 json-c-0.18.tar.gz
|
||||
# Locally calculated
|
||||
sha256 74c1e6ca5eba76b54d0ad00d4815c8315c1b3bc45ff99de61d103dc92486284c COPYING
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
JSON_C_VERSION = 0.17
|
||||
JSON_C_VERSION = 0.18
|
||||
JSON_C_SITE = https://s3.amazonaws.com/json-c_releases/releases
|
||||
JSON_C_INSTALL_STAGING = YES
|
||||
JSON_C_LICENSE = MIT
|
||||
|
||||
Reference in New Issue
Block a user