- Timestamp:
- Nov 19, 2013 9:27:49 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90733
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r49504 r49546 374 374 fireGuestSessionRegisteredEvent(mEventSource, pCurSession, 375 375 false /* Unregistered */); 376 pCurSession.setNull(); 376 pCurSession.setNull(); 377 377 break; 378 378 } … … 487 487 if (RT_UNLIKELY((aUser) == NULL || *(aUser) == '\0')) 488 488 return setError(E_INVALIDARG, tr("No user name specified")); 489 if (RT_UNLIKELY((aPassword) == NULL || *(aPassword) == '\0'))489 if (RT_UNLIKELY((aPassword) == NULL)) /* Allow empty passwords. */ 490 490 return setError(E_INVALIDARG, tr("No password specified")); 491 491 CheckComArgOutPointerValid(aGuestSession);
Note:
See TracChangeset
for help on using the changeset viewer.