Changeset 97215 in vbox
- Timestamp:
- Oct 18, 2022 5:34:00 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154191
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/user_ChangeLogImpl.xml
r97204 r97215 100 100 101 101 <listitem> 102 <para>Windows host: Shared Clipboard: Fixed issue when only 4Kb of host 103 clipboard buffer was accessible to guest (bug #21149)</para> 104 </listitem> 105 106 <listitem> 102 107 <para>Linux Guest Additions: Introduced initial support for kernel 6.1</para> 103 108 </listitem> -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-win.cpp
r96407 r97215 102 102 /* Do not copy data. The dst buffer is not enough. */ 103 103 RTMemFree(pszBuf); 104 return V ERR_BUFFER_OVERFLOW;104 return VINF_BUFFER_OVERFLOW; 105 105 } 106 106 memcpy(pvDst, pszBuf, cbBuf); … … 115 115 116 116 if (cbSrc > cbDst) 117 return V ERR_BUFFER_OVERFLOW;117 return VINF_BUFFER_OVERFLOW; 118 118 119 119 memcpy(pvDst, pvSrc, cbSrc);
Note:
See TracChangeset
for help on using the changeset viewer.