VirtualBox

Ignore:
Timestamp:
Aug 28, 2012 3:05:14 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
80383
Message:

VBoxService/VBoxServiceControlThreadAllocateArgv: Fixed allocation size.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlThread.cpp

    r43000 r43049  
    11901190    AssertPtrReturn(ppapszArgv, VERR_INVALID_POINTER);
    11911191
     1192    VBoxServiceVerbose(3, "VBoxServiceControlThreadPrepareArgv: pszArgv0=%p, papszArgs=%p, fExpandArgs=%RTbool, ppapszArgv=%p\n",
     1193                       pszArgv0, papszArgs, fExpandArgs, ppapszArgv);
     1194
    11921195    int rc = VINF_SUCCESS;
    11931196    uint32_t cArgs;
     
    11981201    }
    11991202
    1200     /* Allocate new argv vector (adding + 1 for argv0). */
    1201     size_t cbSize = (cArgs + 1) * sizeof(char*);
     1203    /* Allocate new argv vector (adding + 2 for argv0 + termination). */
     1204    size_t cbSize = (cArgs + 2) * sizeof(char*);
    12021205    char **papszNewArgv = (char**)RTMemAlloc(cbSize);
    12031206    if (!papszNewArgv)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette