Changeset 52959 in vbox for trunk/src/VBox
- Timestamp:
- Oct 6, 2014 7:46:39 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 96402
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VRDEServerImpl.cpp
r51498 r52959 293 293 * digit. 294 294 */ 295 int cch = pszEnd - pszStart;295 size_t cch = pszEnd - pszStart; 296 296 if (cch > 0 && cch <= 5) /* Port is up to 5 decimal digits. */ 297 297 { -
trunk/src/VBox/Main/xml/Settings.cpp
r52682 r52959 1602 1602 pelmThis->setAttribute("enabled", (d.fEnabled) ? 1 : 0); // too bad we chose 1 vs. 0 here 1603 1603 /* We assume that if there're only 1 element it means that */ 1604 int cOpt = d.GlobalDhcpOptions.size();1604 size_t cOpt = d.GlobalDhcpOptions.size(); 1605 1605 /* We don't want duplicate validation check of networkMask here*/ 1606 1606 if ( ( itOpt == d.GlobalDhcpOptions.end()
Note:
See TracChangeset
for help on using the changeset viewer.