Package: jshon / 20131010-3

Metadata

Package Version Patches format
jshon 20131010-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
remove_werror | (download)

Makefile | 2 1 1 - 0 !
1 file changed, 1 insertion( ), 1 deletion(-)

 remove -werror from compilation since it ftbs
# on newer versions of GCC

manpage_fixes | (download)

jshon.1 | 53 27 26 - 0 !
1 file changed, 27 insertions( ), 26 deletions(-)

 fix macro errors in manpage and convert hyphens to minus signs.
# Hypens can cause issues with copy and pasting examples from the manpage

manpage_add_example | (download)

jshon.1 | 7 7 0 - 0 !
1 file changed, 7 insertions( )

 add an example of how jshon can be used to create json
# The description of jshon includes it's ability to create JSON. Examples
# of how to do this were not present in any of the documentation

fix_segfault_nonexistent_file | (download)

jshon.c | 9 9 0 - 0 !
1 file changed, 9 insertions( )

 fix segfault when -f is a file that does not exist
# When -F is passed a file that does not exist, jshon was attempting to
# read from a null pointer. This patch checks the pointer to make sure it
# is not null. If it is, it will print an error to stderr and exit