Memory leaks and regexp
"ccf::satchell"@hermes.dra.hmg.gb
Tue, 09 Jun 1998 12:10:30 GMT
On my system (Slackware 3.3 = linux 2.0.30), the following fragment
leaks memory very fast. It may be a guile problem or a regex library problem,
does everybody else have the same trouble or not, or is a leak expected?
(let (( abc-rx (make-regexp "abc" )))
(do ((i 0))
(#f )
(regexp-exec abc-rx "123" )
)
)