summaryrefslogtreecommitdiffstats
path: root/ini/ini_valueobj.c
Commit message (Collapse)AuthorAgeFilesLines
* INI: Silence compilation warningsJakub Hrozek2012-03-061-0/+1
| | | | | * Do not set ext_data parameter to NULL * include a private header to avoid implicit declarations
* Leaking memory on failureDmitri Pal2011-01-031-0/+1
| | | | One liner to fix Coverity isssue 10044.
* Coverity issue 10034Dmitri Pal2011-01-031-4/+1
| | | | | | The 'len' varible was not initialized properly. The ref_array_get function does not return error so the error check is removed.
* Improvements to the value objectDmitri Pal2010-12-211-26/+71
| | | | | | * Fixed different issues with folding and serialization * Added more unit testing.
* Enhancements to value objectDmitri Pal2010-12-211-0/+122
| | | | | | | * Added capability to copy value. * Added function to set alternative wrapping boundary of the value. * Created a unit test for both new functions.
* Fixes to the value objectDmitri Pal2010-09-221-63/+75
| | | | | | | | | | | | * Removed the annoyong type casting in the serialization since there is a new function in the simplebuffer to addstring. * Changed the serialization code to not create simple buffer object but rather add to the passed in one. * Added serialization of the value that stores section * Started cleaning constants but then stopped since this effor should be done a bit later when the new high level ini config interface is better baked.
* Introducing Value objectDmitri Pal2010-09-221-0/+901
Value object is an object that combines a potentially multiline value comment and some statistical information regarding a configuration value. Patch includes: Source Header Unit test Makefile changes