Changeset 65171 in vbox for trunk/src/VBox/Main/src-client/VBoxDriversRegister.cpp
- Timestamp:
- Jan 6, 2017 9:56:08 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112674
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VBoxDriversRegister.cpp
r61157 r65171 6 6 7 7 /* 8 * Copyright (C) 2006-201 6Oracle Corporation8 * Copyright (C) 2006-2017 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 27 27 #ifdef VBOX_WITH_VRDE_AUDIO 28 28 # include "DrvAudioVRDE.h" 29 #endif 30 #ifdef VBOX_WITH_AUDIO_VIDEOREC 31 # include "DrvAudioVideoRec.h" 29 32 #endif 30 33 #include "Nvram.h" … … 75 78 return rc; 76 79 #endif 80 #ifdef VBOX_WITH_AUDIO_VIDEOREC 81 rc = pCallbacks->pfnRegister(pCallbacks, &AudioVideoRec::DrvReg); 82 if (RT_FAILURE(rc)) 83 return rc; 84 #endif 77 85 rc = pCallbacks->pfnRegister(pCallbacks, &Nvram::DrvReg); 78 86 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.