VirtualBox

忽略:
時間撮記:
2011-11-21 下午01:35:31 (13 年 以前)
作者:
vboxsync
訊息:

faster, better. untested. :)

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Runtime/r3/stream.cpp

    r39382 r39383  
    437437    AssertPtrReturn(pStream, VERR_INVALID_HANDLE);
    438438    AssertReturn(pStream->u32Magic == RTSTREAM_MAGIC, VERR_INVALID_HANDLE);
    439     AssertReturn(fBinary == 1 /* true */ || fBinary == 0 /* false */ || fBinary == -1, VERR_INVALID_PARAMETER);
    440     AssertReturn(fCurrentCodeSet == 1 /* true */ || fCurrentCodeSet == 0 /* false */ || fCurrentCodeSet == -1, VERR_INVALID_PARAMETER);
     439    AssertReturn((unsigned)(fBinary + 1) <= 2, VERR_INVALID_PARAMETER);
     440    AssertReturn((unsigned)(fCurrentCodeSet + 1) <= 2, VERR_INVALID_PARAMETER);
    441441
    442442    rtStrmLock(pStream);
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette