Changeset 5616 in vbox for trunk/src/VBox/Main/ConsoleVRDPServer.cpp
- Timestamp:
- Nov 2, 2007 1:11:36 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r5611 r5616 663 663 if (cbAddress > 0) 664 664 { 665 memcpy (pvBuffer, address.raw(), cbAddress); 665 if (address.raw()) 666 { 667 memcpy (pvBuffer, address.raw(), cbAddress); 668 } 669 else 670 { 671 /* The value is an empty string. */ 672 *(uint8_t *)pvBuffer = 0; 673 } 666 674 } 667 675
Note:
See TracChangeset
for help on using the changeset viewer.