curl/lib
Gisle Vanem 120f17ce04 Replace LF with CRLF. Ref RFC-2229, sec 2.3:
"Each command line must be terminated by a CRLF".
2005-02-09 11:50:41 +00:00
..
.cvsignore
Makefile.Watcom
Makefile.am
Makefile.b32
Makefile.inc
Makefile.m32
Makefile.netware
Makefile.riscos
Makefile.vc6
README.ares
README.curlx
README.encoding
README.hostip
README.httpauth
README.memoryleak
amigaos.c
amigaos.h
arpa_telnet.h
base64.c
base64.h
ca-bundle.crt
config-amigaos.h
config-mac.h
config-riscos.h
config-vms.h
config-win32.h
config-win32ce.h
config.dj
connect.c
connect.h
content_encoding.c Fix for a bug report that compressed files that are exactly 64 KiB long 2005-02-07 19:12:37 +00:00
content_encoding.h
cookie.c
cookie.h
curllib.dsw
curlx.h
dict.c Replace LF with CRLF. Ref RFC-2229, sec 2.3: 2005-02-09 11:50:41 +00:00
dict.h
easy.c
easyif.h
escape.c
escape.h
file.c
file.h
formdata.c
formdata.h
ftp.c Don't free too much in freedirs() if realloc() fails. 2005-02-08 12:32:28 +00:00
ftp.h
getenv.c
getinfo.c
getinfo.h
hash.c
hash.h
hostares.c ares_gethostbyname wants a 'ares_host_callback' in the 4th argument 2005-02-08 19:03:27 +00:00
hostasyn.c Curl_addrinfo?_callback() and addrinfo_callback() now returns 2005-02-08 12:36:13 +00:00
hostip.c
hostip.h Curl_addrinfo?_callback() and addrinfo_callback() now returns 2005-02-08 12:36:13 +00:00
hostip4.c
hostip6.c
hostsyn.c
hostthre.c Curl_addrinfo?_callback() and addrinfo_callback() now returns 2005-02-08 12:36:13 +00:00
http.c Preserve previous status in Curl_http_done(). 2005-02-06 12:43:40 +00:00
http.h
http_chunks.c
http_chunks.h
http_digest.c
http_digest.h
http_negotiate.c
http_negotiate.h
http_ntlm.c
http_ntlm.h
if2ip.c
if2ip.h
inet_ntoa_r.h
inet_ntop.c
inet_ntop.h
inet_pton.c
inet_pton.h
krb4.c
krb4.h
ldap.c
ldap.h
libcurl.def
libcurl.framework.make
libcurl.imp
libcurl.plist
libcurl.rc
llist.c
llist.h
makefile.amiga
makefile.dj
md5.c
md5.h
memdebug.c
memdebug.h
memory.h
mprintf.c
msvcproj.foot
msvcproj.head
multi.c
multiif.h
netrc.c
netrc.h
nwlib.c
parsedate.c
progress.c
progress.h
security.c
security.h
select.c
select.h
sendf.c
sendf.h
setup.h
share.c
share.h
speedcheck.c
speedcheck.h
ssluse.c
ssluse.h
strequal.c
strequal.h
strerror.c
strerror.h
strtok.c
strtok.h
strtoofft.c
strtoofft.h
telnet.c
telnet.h
timeval.c
timeval.h
transfer.c Curl_wait_for_resolv() no longer disconnects on failure, but leaves that 2005-02-08 07:36:57 +00:00
transfer.h
url.c
url.h
urldata.h
version.c

README.memoryleak

$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 -DCURLDEBUG (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.