Changeset 14972 in vbox for trunk/src/VBox/Main/ParallelPortImpl.cpp
- Timestamp:
- Dec 4, 2008 12:10:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ParallelPortImpl.cpp
r14772 r14972 323 323 STDMETHODIMP ParallelPort::COMGETTER(Enabled) (BOOL *aEnabled) 324 324 { 325 if (!aEnabled) 326 return E_POINTER; 325 CheckComArgOutPointerValid(aEnabled); 327 326 328 327 AutoCaller autoCaller (this); … … 372 371 STDMETHODIMP ParallelPort::COMGETTER(Slot) (ULONG *aSlot) 373 372 { 374 if (!aSlot) 375 return E_POINTER; 373 CheckComArgOutPointerValid(aSlot); 376 374 377 375 AutoCaller autoCaller (this); … … 387 385 STDMETHODIMP ParallelPort::COMGETTER(IRQ) (ULONG *aIRQ) 388 386 { 389 if (!aIRQ) 390 return E_POINTER; 387 CheckComArgOutPointerValid(aIRQ); 391 388 392 389 AutoCaller autoCaller (this); … … 442 439 STDMETHODIMP ParallelPort::COMGETTER(IOBase) (ULONG *aIOBase) 443 440 { 444 if (!aIOBase) 445 return E_POINTER; 441 CheckComArgOutPointerValid(aIOBase); 446 442 447 443 AutoCaller autoCaller (this); … … 497 493 STDMETHODIMP ParallelPort::COMGETTER(Path) (BSTR *aPath) 498 494 { 499 if (!aPath) 500 return E_POINTER; 495 CheckComArgOutPointerValid(aPath); 501 496 502 497 AutoCaller autoCaller (this);
Note:
See TracChangeset
for help on using the changeset viewer.