Custom Query (16363 matches)
Results (1729 - 1731 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #16840 | worksforme | can't login | ||
| Description |
try to setup vm but can't login |
|||
| #16839 | duplicate | Bridged network drops after host suspend/resume | ||
| Description |
This was not an issue until I upgraded to the latest stable version (which I did to see if a snapshot bug was fixed ... it was) Host-only network is not affected (ie.: it maintains connection). Workarounds:
|
|||
| #16838 | fixed | sf_glob_alloc: memory leak on str_name | ||
| Description |
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: /* Check if NLS charset is valid and not points to UTF8 table */
if (info->nls_name[0])
{
if (_IS_UTF8(info->nls_name))
sf_g->nls = NULL;
else
{
sf_g->nls = load_nls(info->nls_name);
if (!sf_g->nls)
{
err = -EINVAL;
LogFunc(("failed to load nls %s\n", info->nls_name));
goto fail1;
}
}
}
..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. |
|||
Note:
See TracQuery
for help on using queries.

