]> granicus.if.org Git - json-c/log
json-c
7 years agoMerge pull request #325 from rouault/fix_stack_overflow_in_json_object_double_to_json...
Eric Haszlakiewicz [Mon, 22 May 2017 01:35:16 +0000 (21:35 -0400)]
Merge pull request #325 from rouault/fix_stack_overflow_in_json_object_double_to_json_string_format

Fix stack buffer overflow in json_object_double_to_json_string_format()

7 years agoFix stack buffer overflow in json_object_double_to_json_string_format()
Even Rouault [Thu, 18 May 2017 20:36:35 +0000 (22:36 +0200)]
Fix stack buffer overflow in json_object_double_to_json_string_format()

Issue originally found in the json-c 0.11 internal copy in GDAL but also found
in latest git version.

If doing things like
json_object* obj = json_object_new_double(1e300);
json_object_set_serializer(obj, json_object_double_to_json_string, "%f", NULL);
json_object_to_json_string(obj)

    size = snprintf(buf, sizeof(buf),
        format ? format :
          (modf(jso->o.c_double, &dummy) == 0) ? "%.17g.0" : "%.17g",
          jso->o.c_double);
will return a value greater than 128 since at least 300 characters are needed.
This value is then passed to printbuf_memappend(pb, buf, size); that tries to
read size bytes in buf.

So we should clamp size to sizeof(buf). And on Windows, _snprintf() returns -1
in that situation, so deal also with this case.

Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=1682
Credit to OSS-Fuzz

7 years agoMerge pull request #311 from jj1118/master
Eric Haszlakiewicz [Sun, 26 Mar 2017 03:52:57 +0000 (03:52 +0000)]
Merge pull request #311 from jj1118/master

Fix error C3688 when compiling on Visual Studio 2015

7 years agoFix error C3688 when compiling on Visual Studio 2015: invalid literal suffix 'PRId64...
Jason Li [Fri, 24 Mar 2017 06:53:25 +0000 (14:53 +0800)]
Fix error C3688 when compiling on Visual Studio 2015: invalid literal suffix 'PRId64'; literal operator or literal operator template 'operator ""PRId64' not found

7 years agoMerge pull request #310 from marxin/fix-gcc7-warnings
Eric Haszlakiewicz [Thu, 23 Mar 2017 03:37:14 +0000 (23:37 -0400)]
Merge pull request #310 from marxin/fix-gcc7-warnings

Add FALLTHRU comment to handle GCC7 warnings.

7 years agoAdd FALLTHRU comment to handle GCC7 warnings.
marxin [Tue, 21 Mar 2017 07:42:11 +0000 (08:42 +0100)]
Add FALLTHRU comment to handle GCC7 warnings.

7 years agoMerge pull request #305 from alexanderst/master
Eric Haszlakiewicz [Sat, 4 Mar 2017 04:12:56 +0000 (23:12 -0500)]
Merge pull request #305 from alexanderst/master

Fix compilation without C-99 option

7 years agoFix compilation without C-99 option
Alex [Thu, 2 Mar 2017 08:57:49 +0000 (10:57 +0200)]
Fix compilation without C-99 option

7 years agoAdd a few more cases to test_parse to provide some examples of how parsing works...
Eric Haszlakiewicz [Sun, 26 Feb 2017 16:22:45 +0000 (16:22 +0000)]
Add a few more cases to test_parse to provide some examples of how parsing works; should help address the questions raised in Issue #302.

7 years agoMerge pull request #303 from yogo1212/tokener_h
Eric Haszlakiewicz [Sat, 25 Feb 2017 03:34:36 +0000 (22:34 -0500)]
Merge pull request #303 from yogo1212/tokener_h

fix doc in tokener header file

7 years agofix doc in tokener header file
Leon M. George [Mon, 20 Feb 2017 03:41:55 +0000 (04:41 +0100)]
fix doc in tokener header file

7 years agoIssue #300: Cast size_t values to int instead of unsigned long long to work around...
Eric Haszlakiewicz [Sun, 5 Feb 2017 17:00:35 +0000 (17:00 +0000)]
Issue #300: Cast size_t values to int instead of unsigned long long to work around broken behavior of MinGW.

7 years agoIssue #300: Some platforms, such as MinGW, don't have ETXTBSY and ENOTBLK, so skip...
Eric Haszlakiewicz [Sun, 5 Feb 2017 04:43:54 +0000 (04:43 +0000)]
Issue #300: Some platforms, such as MinGW, don't have ETXTBSY and ENOTBLK, so skip those there.

7 years agoIssue #300: Use %p instead of %lx in test_util_file since some platforms' pointers...
Eric Haszlakiewicz [Sun, 5 Feb 2017 04:37:27 +0000 (04:37 +0000)]
Issue #300: Use %p instead of %lx in test_util_file since some platforms' pointers are larger than "unsigned long".
Also, there's no need to worry about output consistency here, since it'll be
 different anyway due to different pointer values.

7 years agoAdd cast to int in calls to isdigit() since some platforms complain about char being...
Eric Haszlakiewicz [Sun, 5 Feb 2017 04:34:05 +0000 (04:34 +0000)]
Add cast to int in calls to isdigit() since some platforms complain about char being used as an array index.

7 years agoMerge pull request #299 from qlyoung/perf-improvements
Eric Haszlakiewicz [Sat, 4 Feb 2017 16:13:14 +0000 (11:13 -0500)]
Merge pull request #299 from qlyoung/perf-improvements

Improve json_object -> string performance

7 years agoRestore sprintbuf(), add macro for string literals
Quentin Young [Fri, 3 Feb 2017 21:43:59 +0000 (21:43 +0000)]
Restore sprintbuf(), add macro for string literals

Hawciz pointed out that the previous commit modifies the public
interface of printbuf. Per his suggestion, sprintbuf() was restored
and a new pair of macros was added that wraps printbuf_memappend().

Using a wrapper macro instead of modifying sprintbuf() also reduces
function call overhead, bringing total performance gains to
approximately 400%.

7 years agoUse strdup instead of strndup in test1.c, there's no need for the latter because...
Eric Haszlakiewicz [Fri, 3 Feb 2017 17:10:27 +0000 (17:10 +0000)]
Use strdup instead of strndup in test1.c, there's no need for the latter because json_object_to_json_string_length() will always return a properly sized string.

7 years agoImprove json_object -> string performance
Quentin Young [Thu, 2 Feb 2017 17:16:26 +0000 (17:16 +0000)]
Improve json_object -> string performance

Removes variadic prints for ~3x performance improvement.

7 years agoIssue #295: also check if size_t is the size of long long, to help support 64-bit...
Eric Haszlakiewicz [Sun, 8 Jan 2017 03:55:31 +0000 (22:55 -0500)]
Issue #295: also check if size_t is the size of long long, to help support 64-bit Windows platforms.

8 years agoIgnore tests/test_float
Eric Haszlakiewicz [Sun, 18 Dec 2016 19:35:06 +0000 (14:35 -0500)]
Ignore tests/test_float

8 years agoChange a memcpy that should be a memmove within json_pointer_get, and fix memory...
Eric Haszlakiewicz [Sun, 18 Dec 2016 19:33:41 +0000 (14:33 -0500)]
Change a memcpy that should be a memmove within json_pointer_get, and fix memory leaks in of one the json_pointer tests.

8 years agoNote some minimum versions needed for autoconf, etc...
Eric Haszlakiewicz [Tue, 13 Dec 2016 04:01:20 +0000 (23:01 -0500)]
Note some minimum versions needed for autoconf, etc...

8 years agoIssue#292: bump the required version of configure listed in configure.ac so a more...
Eric Haszlakiewicz [Mon, 12 Dec 2016 03:18:33 +0000 (19:18 -0800)]
Issue#292: bump the required version of configure listed in configure.ac so a more useful error message is generated, rather than failing later because the extra macros from ./autoconf-archive/m4/ didn't get loaded.

8 years agoMerge pull request #289 from jgerhards/i-278
Eric Haszlakiewicz [Mon, 5 Dec 2016 01:52:33 +0000 (20:52 -0500)]
Merge pull request #289 from jgerhards/i-278

bugfix: floating point representaion without fractional part

8 years agotestbench: add test for floating point representation
Jan Gerhards [Sun, 27 Nov 2016 10:50:48 +0000 (11:50 +0100)]
testbench: add test for floating point representation

8 years agobugfix: floating point representaion without fractional part
Jan Gerhards [Sun, 27 Nov 2016 10:47:00 +0000 (11:47 +0100)]
bugfix: floating point representaion without fractional part

closes https://github.com/json-c/json-c/issues/278

8 years agoMerge pull request #287 from commodo/json_pointer_va_args
Eric Haszlakiewicz [Thu, 24 Nov 2016 20:03:50 +0000 (15:03 -0500)]
Merge pull request #287 from commodo/json_pointer_va_args

json_pointer: extend setter & getter with printf() style arguments

8 years agovasprintf_compat.h: spin-off this compat header ; use math_compat.h as template
Alexandru Ardelean [Wed, 16 Nov 2016 15:04:41 +0000 (17:04 +0200)]
vasprintf_compat.h: spin-off this compat header ; use math_compat.h as template

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agostrdup_compat.h: re-spin this compat header ; use math_compat.h as template
Alexandru Ardelean [Wed, 16 Nov 2016 15:00:45 +0000 (17:00 +0200)]
strdup_compat.h: re-spin this compat header ; use math_compat.h as template

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agotest_json_pointer: update test with a few printf variants
Alexandru Ardelean [Wed, 16 Nov 2016 14:22:13 +0000 (16:22 +0200)]
test_json_pointer: update test with a few printf variants

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agojson_pointer: add json_pointer_getf/setf() function variants
Alexandru Ardelean [Wed, 16 Nov 2016 09:55:41 +0000 (11:55 +0200)]
json_pointer: add json_pointer_getf/setf() function variants

These include support for printf() style args for path.

Adds support for calling with 'json_pointer_getf(obj, &res, "/foo/%d/%s", 0, bar)'
style args.

Makes it easier for doing more dynamic stuff/magic, without
needing to use vasprintf() externally.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agojson_pointer.c: fix whitespace
Alexandru Ardelean [Wed, 16 Nov 2016 09:34:29 +0000 (11:34 +0200)]
json_pointer.c: fix whitespace

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agoMerge pull request #285 from ebassi/revert-strdup-compat
Eric Haszlakiewicz [Wed, 9 Nov 2016 14:56:58 +0000 (09:56 -0500)]
Merge pull request #285 from ebassi/revert-strdup-compat

Revert "compat/strdup.h: move common compat check for strdup() to own…

8 years agoRevert "compat/strdup.h: move common compat check for strdup() to own file"
Emmanuele Bassi [Mon, 7 Nov 2016 20:51:11 +0000 (20:51 +0000)]
Revert "compat/strdup.h: move common compat check for strdup() to own file"

This reverts commit aaba8c1080533133329086e47f4f45981dfdd1ee.

This commit breaks builddir != srcdir build, but, more importantly, it
also adds a dependency on a header, "config.h", which is not installed
and it's supposed to be private — since it's generated at configuration
time and it's not meant to be used by projects compiling against a
library.

8 years agoMerge pull request #283 from commodo/json_pointer
Eric Haszlakiewicz [Fri, 4 Nov 2016 15:48:30 +0000 (11:48 -0400)]
Merge pull request #283 from commodo/json_pointer

json_pointer: add first revision based on RFC 6901

8 years agotests: add test_json_pointer test
Alexandru Ardelean [Tue, 1 Nov 2016 16:07:03 +0000 (18:07 +0200)]
tests: add test_json_pointer test

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agotests/strerror_override.c: fix compilation error
Alexandru Ardelean [Tue, 1 Nov 2016 15:49:28 +0000 (17:49 +0200)]
tests/strerror_override.c: fix compilation error

I got this on Mac OS X at least.
Not sure if it shows up in other envs

error:
```
strerror_override.c:53:13: error: incompatible redeclaration of library function 'strerror' [-Werror,-Wincompatible-library-redeclaration]
const char *strerror(int errno_in)
```

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agojson_pointer: add first revision
Alexandru Ardelean [Tue, 25 Oct 2016 14:39:16 +0000 (17:39 +0300)]
json_pointer: add first revision

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agocompat/strdup.h: move common compat check for strdup() to own file
Alexandru Ardelean [Wed, 26 Oct 2016 07:37:50 +0000 (10:37 +0300)]
compat/strdup.h: move common compat check for strdup() to own file

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
8 years agoHandle NULL objects in json_object_get_userdata() by returning NULL, but abort in...
Eric Haszlakiewicz [Sat, 29 Oct 2016 19:42:36 +0000 (15:42 -0400)]
Handle NULL objects in json_object_get_userdata() by returning NULL, but abort in json_object_set_userdata() since we can't actually do anything with the userdata.

8 years agoIssue #280: add a few assert() calls to ensure objects are of the appropriate type.
Eric Haszlakiewicz [Sat, 29 Oct 2016 19:31:31 +0000 (15:31 -0400)]
Issue #280: add a few assert() calls to ensure objects are of the appropriate type.

8 years agoUse json_visit() to clear the serializer data set when parsing so the output from...
Eric Haszlakiewicz [Sat, 29 Oct 2016 19:13:16 +0000 (15:13 -0400)]
Use json_visit() to clear the serializer data set when parsing so the output from test_parse reflects the actual values parsed.

8 years agoAdd a json_c_visit() function to provide a way to iterate over a tree of json-c objects.
Eric Haszlakiewicz [Sat, 29 Oct 2016 19:01:20 +0000 (15:01 -0400)]
Add a json_c_visit() function to provide a way to iterate over a tree of json-c objects.

8 years agoFix broken key-order test in test_compare.
Eric Haszlakiewicz [Mon, 10 Oct 2016 04:13:39 +0000 (00:13 -0400)]
Fix broken key-order test in test_compare.

8 years agoMerge pull request #272 from sgerbino/master
Eric Haszlakiewicz [Sat, 8 Oct 2016 17:13:33 +0000 (13:13 -0400)]
Merge pull request #272 from sgerbino/master

Allows for compilation with CMake on macOS

8 years agoMerge pull request #277 from ALLTERCO/json_object_set_xxx
Eric Haszlakiewicz [Sat, 8 Oct 2016 16:08:53 +0000 (12:08 -0400)]
Merge pull request #277 from ALLTERCO/json_object_set_xxx

Json object set xxx

8 years agotry restore windows automated builds
Stoian Ivanov [Fri, 7 Oct 2016 19:54:06 +0000 (22:54 +0300)]
try restore windows automated builds

8 years agofix compiler warning for int sizes
Stoian Ivanov [Thu, 6 Oct 2016 22:07:34 +0000 (01:07 +0300)]
fix compiler warning for int sizes

8 years agostring set and tests
Stoian Ivanov [Thu, 6 Oct 2016 21:51:24 +0000 (00:51 +0300)]
string set and tests

8 years agogitignore test; add double value set checks in test
Stoian Ivanov [Thu, 6 Oct 2016 20:32:19 +0000 (23:32 +0300)]
gitignore test; add double value set checks in test

8 years agosome simple tests
Stoian Ivanov [Thu, 6 Oct 2016 20:16:29 +0000 (23:16 +0300)]
some simple tests

8 years agoIssue #275: fix out of bounds read when handling unicode surrogate pairs.
Eric Haszlakiewicz [Thu, 6 Oct 2016 03:15:51 +0000 (23:15 -0400)]
Issue #275: fix out of bounds read when handling unicode surrogate pairs.

8 years agosome basic set
Stoian Ivanov [Wed, 5 Oct 2016 20:55:46 +0000 (23:55 +0300)]
some basic set

8 years agoMerge pull request #273 from konoal/master
Eric Haszlakiewicz [Wed, 28 Sep 2016 12:08:01 +0000 (08:08 -0400)]
Merge pull request #273 from konoal/master

fixed wrong object name in json_object_all_values_equal

8 years agoMerge pull request #274 from pepevel/master
Eric Haszlakiewicz [Wed, 28 Sep 2016 12:05:50 +0000 (08:05 -0400)]
Merge pull request #274 from pepevel/master

Support for 64 bit pointers on Windows

8 years agoSupport for 64 bit pointers on Windows
pepevel [Tue, 27 Sep 2016 19:12:03 +0000 (20:12 +0100)]
Support for 64 bit pointers on Windows

8 years agofixed wrong object name in json_object_all_values_equal
Alexey Konovalov [Tue, 27 Sep 2016 08:20:49 +0000 (11:20 +0300)]
fixed wrong object name in json_object_all_values_equal

8 years agoChanged CMake variables and adding output for debugging
Steve Gerbino [Mon, 26 Sep 2016 04:19:46 +0000 (00:19 -0400)]
Changed CMake variables and adding output for debugging

8 years agoTarget C99 standards to get rid of warnings
Steve Gerbino [Mon, 26 Sep 2016 04:09:55 +0000 (00:09 -0400)]
Target C99 standards to get rid of warnings

8 years agoModified the execute_process commands
Steve Gerbino [Mon, 26 Sep 2016 03:08:39 +0000 (23:08 -0400)]
Modified the execute_process commands

8 years agoChanged PROJECT_SOURCE_DIR to CMAKE_CURRENT_SOURCE_DIR to fix building when used...
Steve Gerbino [Mon, 26 Sep 2016 02:32:35 +0000 (22:32 -0400)]
Changed PROJECT_SOURCE_DIR to CMAKE_CURRENT_SOURCE_DIR to fix building when used as external project

8 years agoModified CMakeLists.txt to use autotools to generate configuration for Unix systems
Steve Gerbino [Mon, 26 Sep 2016 02:03:56 +0000 (22:03 -0400)]
Modified CMakeLists.txt to use autotools to generate configuration for Unix systems

8 years agoLowered CMake required version so that Travis CI is able to build, moved include...
Steve Gerbino [Sun, 25 Sep 2016 22:49:34 +0000 (18:49 -0400)]
Lowered CMake required version so that Travis CI is able to build, moved include folder to include/json-c to match the behavior of autotools

8 years agoTrailing slash seems necessary in the install command to get contents
Steve Gerbino [Sun, 25 Sep 2016 19:04:05 +0000 (15:04 -0400)]
Trailing slash seems necessary in the install command to get contents

8 years agoForget DESTINATION in CMake install command
Steve Gerbino [Sun, 25 Sep 2016 18:59:38 +0000 (14:59 -0400)]
Forget DESTINATION in CMake install command

8 years agoWe need to also install the generated configuration files
Steve Gerbino [Sun, 25 Sep 2016 18:57:15 +0000 (14:57 -0400)]
We need to also install the generated configuration files

8 years agoFixed typo in CMakeList.txt FILES_MATCHING
Steve Gerbino [Sun, 25 Sep 2016 18:46:33 +0000 (14:46 -0400)]
Fixed typo in CMakeList.txt FILES_MATCHING

8 years agoAdded install instructions for CMake
Steve Gerbino [Sun, 25 Sep 2016 18:42:14 +0000 (14:42 -0400)]
Added install instructions for CMake

8 years agoResolves json-c/json-c#271 by adding MacOS configuration files and modifies CMakeList...
Steve Gerbino [Sun, 25 Sep 2016 06:14:57 +0000 (02:14 -0400)]
Resolves json-c/json-c#271 by adding MacOS configuration files and modifies CMakeLists.txt to use them

8 years agojson_object_set_boolean for upstream style check
Stoian Ivanov [Tue, 20 Sep 2016 22:31:00 +0000 (01:31 +0300)]
json_object_set_boolean for upstream style check

8 years agoMerge pull request #267 from sixlettervariables/patch-1
Eric Haszlakiewicz [Mon, 12 Sep 2016 22:19:26 +0000 (18:19 -0400)]
Merge pull request #267 from sixlettervariables/patch-1

Removes me as Win32 maintainer, because I'm not.

8 years agoRemoves me as a maintainer, because I'm not.
Christopher Watford [Mon, 12 Sep 2016 18:18:21 +0000 (14:18 -0400)]
Removes me as a maintainer, because I'm not.

Updates README-WIN32.html to remove my status as a maintainer (I'm not). Also removes ancient porting notes and adds a reference to json_config.h.win32 which is where most folks should go to start with Windows issues.

8 years agoIssue #263: add const so the prototype for json_object_object_add_ex() matches the...
Eric Haszlakiewicz [Thu, 25 Aug 2016 03:41:22 +0000 (23:41 -0400)]
Issue #263: add const so the prototype for json_object_object_add_ex() matches the definition.

8 years agoAdd Cmakefile
Randy Armstrong [Wed, 24 Aug 2016 07:16:13 +0000 (00:16 -0700)]
Add Cmakefile

8 years agoFix memory leak and inconsistent output (due to varying fd numbers) in test_util_file.
Eric Haszlakiewicz [Sun, 21 Aug 2016 03:06:22 +0000 (23:06 -0400)]
Fix memory leak and inconsistent output (due to varying fd numbers) in test_util_file.

8 years agoIssue #260: add a check to prevent trivial loops in the object tree, even though...
Eric Haszlakiewicz [Sun, 21 Aug 2016 02:41:49 +0000 (22:41 -0400)]
Issue #260: add a check to prevent trivial loops in the object tree, even though it is up to the callers to avoid doing so in more complex cases.

8 years agojson_object_object_add_ex() should have shared code with json_object_object_add(...
Eric Haszlakiewicz [Sun, 21 Aug 2016 02:35:29 +0000 (22:35 -0400)]
json_object_object_add_ex() should have shared code with json_object_object_add(), and been changed to return int at the same time the latter was.  Do that now.
Also correct a couple of calls to _to_json_string to check the return value.

8 years agoMerge branch 'RyDroid-tests'
Eric Haszlakiewicz [Sat, 13 Aug 2016 13:17:25 +0000 (09:17 -0400)]
Merge branch 'RyDroid-tests'

8 years agoMerge branch 'tests' of https://github.com/RyDroid/json-c into RyDroid-tests
Eric Haszlakiewicz [Sat, 13 Aug 2016 13:17:01 +0000 (09:17 -0400)]
Merge branch 'tests' of https://github.com/RyDroid/json-c into RyDroid-tests

Conflicts:
tests/test_util_file.c

8 years agoMerge pull request #251 from RyDroid/editorconfig
Eric Haszlakiewicz [Sat, 13 Aug 2016 12:31:57 +0000 (08:31 -0400)]
Merge pull request #251 from RyDroid/editorconfig

Adding a file for EditorConfig

8 years agoVery minor changes to some tests
Nicola Spanti (RyDroid) [Mon, 8 Aug 2016 13:11:19 +0000 (15:11 +0200)]
Very minor changes to some tests

8 years agoAdding a file for EditorConfig
Nicola Spanti (RyDroid) [Sun, 7 Aug 2016 16:20:59 +0000 (18:20 +0200)]
Adding a file for EditorConfig

8 years agoRevert bogus change to json_object_get() made in f40b08d8 that caused it to always...
Eric Haszlakiewicz [Thu, 11 Aug 2016 21:03:16 +0000 (17:03 -0400)]
Revert bogus change to json_object_get() made in f40b08d8 that caused it to always return NULL. (Issue #259)
Also undo NULL check in json_tokener_set_flags(): it's not at all valid toi
 try to set flags on a NULL pointer, and doing so should not be silently
 ignored.

8 years agoMerge pull request #255 from RyDroid/minor-c2
Eric Haszlakiewicz [Wed, 10 Aug 2016 19:06:30 +0000 (15:06 -0400)]
Merge pull request #255 from RyDroid/minor-c2

Minor changes in C source code

8 years agoMerge pull request #252 from RyDroid/minor-no-c
Eric Haszlakiewicz [Tue, 9 Aug 2016 11:39:27 +0000 (07:39 -0400)]
Merge pull request #252 from RyDroid/minor-no-c

Very minor changes not related to C source code

8 years agoMerge branch 'jobol-issue-165'
Eric Haszlakiewicz [Tue, 9 Aug 2016 11:38:18 +0000 (07:38 -0400)]
Merge branch 'jobol-issue-165'

8 years agoMerge branch 'issue-165' of https://github.com/jobol/json-c into jobol-issue-165
Eric Haszlakiewicz [Tue, 9 Aug 2016 11:36:54 +0000 (07:36 -0400)]
Merge branch 'issue-165' of https://github.com/jobol/json-c into jobol-issue-165

Conflicts:
tests/test_util_file.c

8 years agoMerge pull request #253 from RyDroid/cppcheck-travis
Eric Haszlakiewicz [Tue, 9 Aug 2016 02:57:56 +0000 (22:57 -0400)]
Merge pull request #253 from RyDroid/cppcheck-travis

Adding a test with cppcheck for Travis CI

8 years agoMerge pull request #249 from RyDroid/readme
Eric Haszlakiewicz [Tue, 9 Aug 2016 02:53:33 +0000 (22:53 -0400)]
Merge pull request #249 from RyDroid/readme

Improving README

8 years agoAdd a brief style guide. Address Issue #257.
Eric Haszlakiewicz [Tue, 9 Aug 2016 02:50:23 +0000 (22:50 -0400)]
Add a brief style guide.  Address Issue #257.

8 years agoMerge pull request #250 from RyDroid/gitignore
Eric Haszlakiewicz [Mon, 8 Aug 2016 18:42:01 +0000 (18:42 +0000)]
Merge pull request #250 from RyDroid/gitignore

Improving .gitignore

8 years agoImproving .gitignore
Nicola Spanti (RyDroid) [Sun, 7 Aug 2016 16:24:53 +0000 (18:24 +0200)]
Improving .gitignore

8 years agoImproving README
Nicola Spanti (RyDroid) [Sun, 7 Aug 2016 16:29:11 +0000 (18:29 +0200)]
Improving README

8 years agoAdding a test with cppcheck for Travis CI
Nicola Spanti (RyDroid) [Mon, 8 Aug 2016 13:23:27 +0000 (15:23 +0200)]
Adding a test with cppcheck for Travis CI

8 years agoMinor changes in C source code
Nicola Spanti (RyDroid) [Mon, 8 Aug 2016 13:20:41 +0000 (15:20 +0200)]
Minor changes in C source code

8 years agoVery minor changes not related to C source code
Nicola Spanti (RyDroid) [Mon, 8 Aug 2016 13:12:44 +0000 (15:12 +0200)]
Very minor changes not related to C source code

8 years agoIssue #246: Include xlocale.h too, to get locale_t defined, since not all OSes includ...
Eric Haszlakiewicz [Wed, 3 Aug 2016 02:25:05 +0000 (22:25 -0400)]
Issue #246: Include xlocale.h too, to get locale_t defined, since not all OSes include that in locale.h

8 years agotest: add test of 'json_object_to_json_string_length'
José Bollo [Mon, 1 Aug 2016 13:04:54 +0000 (15:04 +0200)]
test: add  test of 'json_object_to_json_string_length'

The test is implied in test1.

The idea is to check that the returned lengths and strings
are identical to what is expected to return the already
tested function 'json_object_to_json_string_ext'.

Signed-off-by: José Bollo <jose.bollo@iot.bzh>
8 years agoIssue #195: Actually call uselocale() in the new locale handling code in json_tokener.
Eric Haszlakiewicz [Sun, 31 Jul 2016 18:39:56 +0000 (14:39 -0400)]
Issue #195: Actually call uselocale() in the new locale handling code in json_tokener.
Also, be sure the right locale_t is freed if we fail on the second uselocale.
Finally, fix test_locale so it *doesn't* use json_object_to_json_string as
 that will simple re-emit the original parsed string values.