- Jul 12, 2014
-
-
Petri Lehtinen authored
Fixes #187.
-
- Apr 30, 2014
-
-
Petri Lehtinen authored
Fixes #177.
-
- Feb 17, 2014
-
-
Petri Lehtinen authored
Add new autotools-generated files to .gitignore
-
Petri Lehtinen authored
Fix unpack when mixing strict mode and optional keys
-
Petri Lehtinen authored
Three fixes for hashtable seeding on Windows
-
- Feb 12, 2014
-
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
- Feb 11, 2014
-
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
Petri Lehtinen authored
Thanks to Florian Weimer and Eric Sesterhenn for reporting, reviewing and testing.
-
Chip Salzenberg authored
-
- Dec 27, 2013
-
-
Petri Lehtinen authored
-
- Dec 13, 2013
-
-
Petri Lehtinen authored
-
Petri Lehtinen authored
Fixes #147.
-
- Nov 14, 2013
-
-
Petri Lehtinen authored
-
- Sep 23, 2013
-
-
Petri Lehtinen authored
-
- Sep 20, 2013
-
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
Phillip Howell authored
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
- Sep 16, 2013
-
-
Petri Lehtinen authored
-
Phillip Howell authored
-
- Aug 28, 2013
-
-
Petri Lehtinen authored
Replace strcpy with memcpy
-
Olivier Langlois authored
Since len is known, the copy function does not need to check byte by byte the end of the string. Signed-off-by:Olivier Langlois <olivier@olivierlanglois.net>
-
- Aug 15, 2013
-
-
Petri Lehtinen authored
-
- Aug 06, 2013
-
-
Petri Lehtinen authored
-
- Jul 28, 2013
-
-
Petri Lehtinen authored
-
- Jul 23, 2013
-
-
Petri Lehtinen authored
-
- Jul 21, 2013
-
-
Petri Lehtinen authored
Fixes #129.
-
- Jul 08, 2013
-
-
Petri Lehtinen authored
Fixes #126.
-
- Jul 02, 2013
-
-
Petri Lehtinen authored
BUGFIX: Compilation error with -DNDEBUG defined.
-
- Jun 26, 2013
-
-
Joakim Soderberg authored
When building a "MinSizeRel" with CMake I get a compilation error in lex_unget_unsave. This is because assertions are turned off using -DNDEBUG: ``` /usr/bin/gcc -DHAVE_CONFIG_H -fPIC -Os -DNDEBUG -Ijansson/build/include -Ijansson/build/private_include -Wall -Wextra -Wdeclaration-after-statement -Werror -o CMakeFiles/jansson.dir/src/load.c.o -c jansson/src/load.c jansson/src/load.c: In function âx_unget_unsaveâjansson/src/load.c:256:14: error: variable â set but not used [-Werror=unused-but-set-variable] cc1: all warnings being treated as errors ``` This will then remove the insert, which makes the "d" variable unused, which is treated as an error since we have -Wall set. We can't simply get rid of the variable either and put the strbuffer_pop call in the assert call, since it's a macro and would remove the call entirely. So I simply added a check for NDEBUG to fix it.
-
Petri Lehtinen authored
Adding option for MSVC for those who are linking statically.
-
- Jun 25, 2013
-
-
cryptobiote authored
-
- Jun 21, 2013
-
-
cryptobiote authored
-
- Jun 14, 2013
-
-
Petri Lehtinen authored
Prevent compiler warning
-