Changeset 10234 in vbox for trunk/src/VBox/Additions/common/VBoxControl
- Timestamp:
- Jul 4, 2008 3:50:36 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32822
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r10143 r10234 210 210 #ifdef VBOX_WITH_INFO_SVC 211 211 { "getguestproperty", getGuestProperty }, 212 { "setguestproperty", setGuestProperty } 212 { "setguestproperty", setGuestProperty }, 213 213 #endif 214 { NULL, NULL } /* terminator */ 214 215 }; 215 216 … … 314 315 /** And if so, what is its position in the table? */ 315 316 unsigned index = 0; 316 while (index < RT_ELEMENTS(g_commandHandlers) && !found) 317 while ( index < RT_ELEMENTS(g_commandHandlers) 318 && !found 319 && (g_commandHandlers[index].command != NULL)) 317 320 { 318 321 if (0 == strcmp(argv[iArg], g_commandHandlers[index].command))
Note:
See TracChangeset
for help on using the changeset viewer.