You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2003/01/14 02:20:29 UTC

DO NOT REPLY [Bug 16046] New: - Memory leak

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16046>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16046

Memory leak

           Summary: Memory leak
           Product: Apache httpd-2.0
           Version: 2.0.43
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: Major
          Priority: Other
         Component: mod_deflate
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: dd@cron.ru


Memory leak ~ 8k occurs every time I run PROPFIND webdav method when 
mod_deflate is activated, e.g. if client issued Accept-Encode: gzip header.
PROPFIND was used against a quite big directory (~400files) and the responce 
stream was ~ 400kB (after de-compression).
Problem does not appear if either mod_deflate is not loaded or if "Accept-
Encode: gzip" is not used.

Following configuration directives are in my httpd.conf:

#stripped off common top
LoadModule deflate_module modules/mod_deflate.so
NameVirtualHost localhost:80
NameVirtualHost localhost:801
<VirtualHost localhost:80>
</VirtualHost>
<VirtualHost localhost:801>

DAVLockDB logs/DavLock
<Directory "D:/apa2_0_43/htdocs">
    SetInputFilter DEFLATE
    SetOutputFilter DEFLATE
    DAV On
    <Limit PUT POST DELETE PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
        AuthName             "Fx"
        AuthType             Basic
        AuthUserFile         logs/passw
        Require user dmitri
    </Limit>
</Directory>
</VirtualHost>

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org