curl/lib
Daniel Stenberg 3773d76dfd Steve Oliphant pointed out that test case 105 did not work anymore and this
was due to a missing fix for the password prompting
2003-01-10 16:19:32 +00:00
..
.cvsignore more to ignore 2002-12-01 11:21:36 +00:00
arpa_telnet.h
base64.c proper indent 2003-01-09 11:31:49 +00:00
base64.h
ca-bundle.crt
ca-bundle.h.in
config-mac.h
config-riscos.h
config-vms.h
config-win32.h
connect.c This fixed yet another connect problem with the multi interface and ipv4 2003-01-09 14:52:51 +00:00
connect.h
content_encoding.c
content_encoding.h
cookie.c
cookie.h
curllib.dsp
curllib.dsw
dict.c
dict.h
easy.c fix bug (?) :-) 2003-01-06 06:17:15 +00:00
escape.c fixed a very, very rare and very, very little memory leak 2003-01-08 02:27:47 +00:00
escape.h
file.c
file.h
formdata.c let the Curl_FormReader() return 0 when it reaches end of data to that the 2002-11-29 08:12:20 +00:00
formdata.h
ftp.c Only output valid filetime. 2003-01-07 11:25:44 +00:00
ftp.h Curl_GetFTPResponse() takes a different set of parameters and now return a 2002-12-03 10:25:31 +00:00
getdate.c
getdate.h
getdate.y
getenv.c
getinfo.c
getinfo.h
getpass.c
getpass.h
hash.c
hash.h
hostip.c EAGAIN on older (correct) glibc versions indicate a problem and not the need 2002-12-16 11:33:44 +00:00
hostip.h
http_chunks.c
http_chunks.h
http.c The initial HTTP request can now be sent in multiple parts, as part of the 2002-12-10 13:10:00 +00:00
http.h
if2ip.c
if2ip.h
inet_ntoa_r.h
krb4.c Curl_GetFTPResponse() takes a different set of parameters and now return a 2002-12-03 10:25:31 +00:00
krb4.h changed proto for Curl_krb_kauth() 2002-12-05 11:26:20 +00:00
ldap.c
ldap.h
libcurl.def
llist.c
llist.h
Makefile.am share.h is now a used header file 2003-01-09 11:19:51 +00:00
Makefile.b32 updated to reality 2002-12-03 09:32:57 +00:00
Makefile.b32.resp updated to reality 2002-12-03 09:32:57 +00:00
Makefile.m32
Makefile.riscos
Makefile.vc6 Matthew Blain's improvements for debug builds 2003-01-07 09:31:45 +00:00
memdebug.c
memdebug.h
mprintf.c
multi.c
netrc.c
netrc.h
progress.c
progress.h
README.encoding
README.memoryleak
security.c removed unused code 2003-01-09 11:50:34 +00:00
security.h
sendf.c when sending an error message to the debugfunction, we append a newline so 2003-01-07 11:23:52 +00:00
sendf.h send_buffer is no more here 2002-12-10 13:08:22 +00:00
setup.h make WIN32 defined for Borland properly, as told by Alexander J. Oss 2002-12-04 11:06:17 +00:00
share.c Updated more and now looks and and the API possibly works almost like the 2003-01-09 10:21:03 +00:00
share.h Updated more and now looks and and the API possibly works almost like the 2003-01-09 10:21:03 +00:00
speedcheck.c
speedcheck.h
ssluse.c Philippe Raoult's fix to handle wildcard certificate name checks 2003-01-07 16:33:11 +00:00
ssluse.h
strequal.c
strequal.h
strtok.c
strtok.h
telnet.c
telnet.h
timeval.c
timeval.h
transfer.c Simon Liu's HTTP200ALIASES-patch! 2003-01-07 16:15:53 +00:00
transfer.h
url.c Steve Oliphant pointed out that test case 105 did not work anymore and this 2003-01-10 16:19:32 +00:00
url.h
urldata.h if userpwd is "username:", this now implies a blank password while only 2003-01-09 16:47:09 +00:00
version.c

$Id$
                                  _   _ ____  _     
                              ___| | | |  _ \| |    
                             / __| | | | |_) | |    
                            | (__| |_| |  _ <| |___ 
                             \___|\___/|_| \_\_____|

             How To Track Down Suspected Memory Leaks in libcurl
             ===================================================

Single-threaded

  Please note that this memory leak system is not adjusted to work in more
  than one thread. If you want/need to use it in a multi-threaded app. Please
  adjust accordingly.


Build

  Rebuild libcurl with -DMALLOCDEBUG (usually, rerunning configure with
  --enable-debug fixes this). 'make clean' first, then 'make' so that all
  files actually are rebuilt properly. It will also make sense to build
  libcurl with the debug option (usually -g to the compiler) so that debugging
  it will be easier if you actually do find a leak in the library.

  This will create a library that has memory debugging enabled.

Modify Your Application

  Add a line in your application code:

       curl_memdebug("filename");

  This will make the malloc debug system output a full trace of all resource
  using functions to the given file name. Make sure you rebuild your program
  and that you link with the same libcurl you built for this purpose as
  described above.

Run Your Application

  Run your program as usual. Watch the specified memory trace file grow.

  Make your program exit and use the proper libcurl cleanup functions etc. So
  that all non-leaks are returned/freed properly.

Analyze the Flow

  Use the tests/memanalyze.pl perl script to analyze the memdump file:

    tests/memanalyze.pl < memdump

  This now outputs a report on what resources that were allocated but never
  freed etc. This report is very fine for posting to the list!

  If this doesn't produce any output, no leak was detected in libcurl. Then
  the leak is mostly likely to be in your code.