VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1729 - 1731 of 16363)

Ticket Resolution Summary Owner Reporter
#16840 worksforme can't login duckie
Description

try to setup vm but can't login

#16839 duplicate Bridged network drops after host suspend/resume VeHav2GoVeeper
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:

  • suspend/resume guest OS
  • switch the physical adapter it bridges over
#16838 fixed sf_glob_alloc: memory leak on str_name ColinIanKing
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.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy