Loading CHANGES +5 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,11 @@ Changelog Daniel S (1 Nov 2007) - Toby Peterson patched a memory problem in the command line tool that happened when a user had a home dir as an empty string. curl would then do free() on a wrong area. Dan F (1 Nov 2007) - Fixed curl-config --features to not display libz when it wasn't used due to a missing header file. Loading RELEASE-NOTES +2 −1 Original line number Diff line number Diff line Loading @@ -16,6 +16,7 @@ This release includes the following bugfixes: o curl-config --features and --protocols show the correct output when built with NSS, and also when SCP, SFTP and libz are not available o free problem in the curl tool for users with empty home dir This release includes the following known bugs: Loading @@ -32,6 +33,6 @@ New curl mirrors: This release would not have looked like this without help, code, reports and advice from friends like these: Dan Fandrich, Gisle Vanem, Toby Peterson Thanks! (and sorry if I forgot to mention someone) src/homedir.c +3 −1 Original line number Diff line number Diff line Loading @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms Loading Loading @@ -106,6 +106,8 @@ char *homedir(void) #endif if (home && home[0]) home = strdup(home); else home = NULL; } } #endif /* PWD-stuff */ Loading Loading
CHANGES +5 −0 Original line number Diff line number Diff line Loading @@ -6,6 +6,11 @@ Changelog Daniel S (1 Nov 2007) - Toby Peterson patched a memory problem in the command line tool that happened when a user had a home dir as an empty string. curl would then do free() on a wrong area. Dan F (1 Nov 2007) - Fixed curl-config --features to not display libz when it wasn't used due to a missing header file. Loading
RELEASE-NOTES +2 −1 Original line number Diff line number Diff line Loading @@ -16,6 +16,7 @@ This release includes the following bugfixes: o curl-config --features and --protocols show the correct output when built with NSS, and also when SCP, SFTP and libz are not available o free problem in the curl tool for users with empty home dir This release includes the following known bugs: Loading @@ -32,6 +33,6 @@ New curl mirrors: This release would not have looked like this without help, code, reports and advice from friends like these: Dan Fandrich, Gisle Vanem, Toby Peterson Thanks! (and sorry if I forgot to mention someone)
src/homedir.c +3 −1 Original line number Diff line number Diff line Loading @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms Loading Loading @@ -106,6 +106,8 @@ char *homedir(void) #endif if (home && home[0]) home = strdup(home); else home = NULL; } } #endif /* PWD-stuff */ Loading