diff options
Diffstat (limited to 'WWW/Library')
-rw-r--r-- | WWW/Library/Implementation/HTFTP.c | 7 | ||||
-rw-r--r-- | WWW/Library/Implementation/LYLeaks.h | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c index 937bf263..63c8d780 100644 --- a/WWW/Library/Implementation/HTFTP.c +++ b/WWW/Library/Implementation/HTFTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFTP.c,v 1.131 2018/03/11 22:30:30 tom Exp $ + * $LynxId: HTFTP.c,v 1.132 2018/03/28 08:51:10 Gisle.Vanem Exp $ * * File Transfer Protocol (FTP) Client * for a WorldWideWeb browser @@ -1470,6 +1470,11 @@ typedef struct _EntryInfo { static void free_entryinfo_struct_contents(EntryInfo *entry_info) { if (entry_info) { +#ifdef LONG_LIST + FREE(entry_info->file_mode); + FREE(entry_info->file_user); + FREE(entry_info->file_group); +#endif FREE(entry_info->filename); FREE(entry_info->linkname); FREE(entry_info->type); diff --git a/WWW/Library/Implementation/LYLeaks.h b/WWW/Library/Implementation/LYLeaks.h index b3672734..8f616815 100644 --- a/WWW/Library/Implementation/LYLeaks.h +++ b/WWW/Library/Implementation/LYLeaks.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYLeaks.h,v 1.14 2012/02/10 00:15:56 tom Exp $ + * $LynxId: LYLeaks.h,v 1.15 2018/03/28 09:28:18 tom Exp $ */ #ifndef __LYLEAKS_H /* @@ -77,7 +77,8 @@ extern "C" { #endif /* VMS */ /* * Data structures - */ typedef struct SourceLocation_tag { + */ + typedef struct SourceLocation_tag { /* * The file name and line number of where an event took place. */ @@ -119,6 +120,7 @@ extern "C" { /* * Global variable declarations */ + extern char LYLeaksPath[]; /* * Macros |