Re: [Bug-wget] Several little patches / fixes

2014-10-31 Thread Tim Ruehsen
Thanks for having a look at it. Fixed pushed. Tim On Thursday 30 October 2014 14:19:09 Mike Frysinger wrote: On 30 Oct 2014 09:18, Tim Ruehsen wrote: --- a/src/openssl.c +++ b/src/openssl.c @@ -570,6 +571,27 @@ pattern_match (const char *pattern, const char *string) return *n ==

Re: [Bug-wget] Several little patches / fixes

2014-10-31 Thread Tim Rühsen
Am Donnerstag, 30. Oktober 2014, 14:19:09 schrieb Mike Frysinger: On 30 Oct 2014 09:18, Tim Ruehsen wrote: --- a/src/openssl.c +++ b/src/openssl.c @@ -570,6 +571,27 @@ pattern_match (const char *pattern, const char *string) return *n == '\0'; } +char

[Bug-wget] Several little patches / fixes

2014-10-30 Thread Tim Ruehsen
Please review and give me a short feedback before I push them. 0001 fix memory leak in openssl.c (not freeing X509_NAME_oneline() output) and replaces X509_NAME_oneline() by a RFC 2253 compliant output. From the docs: The functions X509_NAME_oneline() and X509_NAME_print() are legacy functions

Re: [Bug-wget] Several little patches / fixes

2014-10-30 Thread Giuseppe Scrivano
Tim Ruehsen tim.rueh...@gmx.de writes: Please review and give me a short feedback before I push them. 0001 fix memory leak in openssl.c (not freeing X509_NAME_oneline() output) and replaces X509_NAME_oneline() by a RFC 2253 compliant output. From the docs: The functions

Re: [Bug-wget] Several little patches / fixes

2014-10-30 Thread Tim Ruehsen
On Thursday 30 October 2014 09:47:20 Giuseppe Scrivano wrote: Tim Ruehsen tim.rueh...@gmx.de writes: Please review and give me a short feedback before I push them. 0001 fix memory leak in openssl.c (not freeing X509_NAME_oneline() output) and replaces X509_NAME_oneline() by a RFC 2253