curl/lib
2003-05-21 08:08:48 +00:00
..
.cvsignore
arpa_telnet.h
base64.c
base64.h
ca-bundle.crt
ca-bundle.h.in
config-mac.h
config-riscos.h
config-vms.h
config-win32.h
config.dj Gisle Vanem made curl build with djgpp on DOS. 2003-05-21 08:08:48 +00:00
connect.c Setup and use CURL_INADDR_NONE all over instead of INADDR_NONE. We setup 2003-05-13 12:12:17 +00:00
connect.h ourerrno became Curl_ourerrno() and is now available to all libcurl 2003-05-01 13:37:05 +00:00
content_encoding.c Dan Fandrich's gzip bugfix 2003-04-22 22:32:02 +00:00
content_encoding.h Dan Fandrich changed CURLOPT_ENCODING to select all supported encodings if 2003-05-12 12:45:14 +00:00
cookie.c Skip any preceeding dots from the domain name of cookies when we keep them 2003-05-15 22:28:19 +00:00
cookie.h Many cookie fixes: 2003-04-30 17:03:43 +00:00
curllib.dsp
curllib.dsw
dict.c
dict.h
easy.c Peter Sylvester pointed out that curl_easy_setopt() will always (wrongly) 2003-04-22 21:42:39 +00:00
escape.c
escape.h
file.c
file.h
formdata.c treat uploaded .html files as text/html by default 2003-04-15 09:29:39 +00:00
formdata.h
ftp.c George Comninos provided a fix that calls the progress meter when waiting 2003-05-14 06:31:00 +00:00
ftp.h
getdate.c.cvs
getdate.h
getdate.y
getenv.c
getinfo.c Andy Cedilnik fixed some compiler warnings 2003-05-01 13:37:36 +00:00
getinfo.h
getpass.c Gisle Vanem made curl build with djgpp on DOS. 2003-05-21 08:08:48 +00:00
getpass.h
hash.c
hash.h
hostip.c Gisle Vanem's code for not trusting h_aliases to always be non-NULL 2003-05-20 09:41:39 +00:00
hostip.h Setup and use CURL_INADDR_NONE all over instead of INADDR_NONE. We setup 2003-05-13 12:12:17 +00:00
http_chunks.c Dan Fandrich corrected the error messages on "bad encoding". 2003-04-22 22:33:39 +00:00
http_chunks.h
http.c incoming proxy headers shall be sent to the debug function has HEADERs not 2003-05-12 12:29:00 +00:00
http.h
if2ip.c
if2ip.h
inet_ntoa_r.h
krb4.c
krb4.h
ldap.c
ldap.h
libcurl.def
llist.c
llist.h
Makefile.am Gisle Vanem made curl build with djgpp on DOS. 2003-05-21 08:08:48 +00:00
Makefile.b32
Makefile.b32.resp
makefile.dj Gisle Vanem made curl build with djgpp on DOS. 2003-05-21 08:08:48 +00:00
Makefile.m32
Makefile.riscos
Makefile.vc6 RSAglue.lib is no longer needed with recent OpenSSL versions 2003-04-25 15:08:46 +00:00
memdebug.c
memdebug.h
mprintf.c
multi.c Peter Kovacs provided a patch that makes the CURLINFO_CONNECT_TIME work fine 2003-04-29 18:03:30 +00:00
netrc.c
netrc.h
progress.c George Comninos provided a fix that calls the progress meter when waiting 2003-05-14 06:31:00 +00:00
progress.h
README.encoding Dan Fandrich changed CURLOPT_ENCODING to select all supported encodings if 2003-05-12 12:45:14 +00:00
README.memoryleak
security.c
security.h
sendf.c Kevin Delafield reported another case where we didn't correctly check for 2003-05-06 08:19:36 +00:00
sendf.h
setup.h Gisle Vanem made curl build with djgpp on DOS. 2003-05-21 08:08:48 +00:00
share.c
share.h
speedcheck.c
speedcheck.h
ssluse.c Andy Cedilnik fixed some compiler warnings 2003-05-01 13:37:36 +00:00
ssluse.h
strequal.c
strequal.h
strtok.c
strtok.h
telnet.c
telnet.h
timeval.c
timeval.h
transfer.c Dan Fandrich changed CURLOPT_ENCODING to select all supported encodings if 2003-05-12 12:45:14 +00:00
transfer.h
url.c Gisle Vanem made curl build with djgpp on DOS. 2003-05-21 08:08:48 +00:00
url.h
urldata.h Gisle Vanem made curl build with djgpp on DOS. 2003-05-21 08:08:48 +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.