VirtualBox

Ignore:
Timestamp:
Apr 21, 2009 8:57:38 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
46239
Message:

Additions/common and linux: don'\t try to lock zero-length buffers when we do HGCM copies

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp

    r15606 r19091  
    3636    int rc = VINF_SUCCESS;
    3737
     38    /* Ugly edge case - zero size buffers shouldn't be locked. */
     39    if (u32Size == 0)
     40    {
     41        *ppvCtx = NIL_RTR0MEMOBJ;
     42        return VINF_SUCCESS;
     43    }
    3844#ifdef RT_OS_WINDOWS
    3945    PMDL pMdl = IoAllocateMdl (pv, u32Size, FALSE, FALSE, NULL);
     
    6874    /** @todo r=frank: Linux: pv is at least in some cases, e.g. with VBoxMapFolder,
    6975     *  an R0 address -- the memory was allocated with kmalloc(). I don't know
    70      *  if this is true in any case. */
     76     *  if this is true in any case.
     77     * r=michael: on Linux, we sometimes have R3 addresses (e.g. shared
     78     *  clipboard) and sometimes R0 (e.g. shared folders).  We really ought
     79     *  to have two separate paths here - at any rate, Linux R0 shouldn't
     80     *  end up calling this API.  In practice, Linux R3 does it's own thing
     81     *  before winding up in the R0 path - which calls this stub API.
     82     */
    7183    NOREF(ppvCtx);
    7284    NOREF(pv);
     
    92104    NOREF(u32Size);
    93105
     106    /* Ugly edge case - zero size buffers aren't be locked. */
     107    if (pvCtx == NIL_RTR0MEMOBJ)
     108        return;
    94109#ifdef RT_OS_WINDOWS
    95110    PMDL pMdl = (PMDL)pvCtx;
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