summaryrefslogtreecommitdiff
path: root/docs/examples/postinmemory.c
Commit message (Collapse)AuthorAgeFilesLines
* docs/examples: URL updatesViktor Szakats2018-09-231-1/+1
| | | | | | | | - also update two URLs outside of docs/examples - fix spelling of filename persistant.c - fix three long lines that started failing checksrc.pl Closes https://github.com/curl/curl/pull/3036
* examples: Fix memory leaks from realloc errorsKruzya2018-09-171-3/+4
| | | | | Make sure to not overwrite the reallocated pointer in realloc() calls to avoid a memleak on memory errors.
* code style: use spaces around equals signsDaniel Stenberg2017-09-111-2/+2
|
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* examples: added descriptionsDaniel Stenberg2016-01-041-1/+5
|
* Bug #149: Deletion of unnecessary checks before calls of the function "free"Markus Elfring2015-03-161-2/+1
| | | | | | | | | | | The function "free" is documented in the way that no action shall occur for a passed null pointer. It is therefore not needed that a function caller repeats a corresponding check. http://stackoverflow.com/questions/18775608/free-a-null-pointer-anyway-or-check-first This issue was fixed by using the software Coccinelle 1.0.0-rc24. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
* postinmemory: new exampleDaniel Stenberg2013-09-291-0/+111
This is similar to getinmemory.c but with an initial POST. Combined-by: Ulf Samuelsson