Fossil

Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

2 most recent check-ins by user cle

2008-10-23
03:21
Fix a spelling in help text of 'tag branch'. ... (check-in: 56177cfe user: cle tags: trunk)
2008-09-11
17:12
Fix a memory double-free'd problem.

In function cgi_set_cookie the zDate was allocated via usage of cgi_rfc822_datestamp. But as it was appended to the blob extraHeader via the format specifier %z the memory was free'd by blob_appendf. As cgi_rfc822_datestamp might return both a dynamic allocated empty string as well as a dynamic allocated string containing the time stamp, blob_appendf should not try to free the zDate. So now the format specifier is changed to %s to let us decide, if we want to free the memory or not. ... (check-in: aeeba751 user: cle tags: trunk)