Changes between Initial Version and Version 1 of Ticket #16838
- Timestamp:
- Jun 20, 2017 12:02:40 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16838 – Description
initial v1 1 1 Function sf_glob_alloc() in src/VBox/Additions/linux/sharedfolders/vfsmod.c allocates a buffer for str_name and leaks this information. The leak occurs on the check: 2 2 {{{ 3 3 /* Check if NLS charset is valid and not points to UTF8 table */ 4 4 if (info->nls_name[0]) … … 17 17 } 18 18 } 19 19 }}} 20 20 ..the failed to load nls error exit path jumps to fail1 which does not free str_name, which looks like a memory leak to me.

