VirtualBox

忽略:
時間撮記:
2009-6-23 上午07:37:59 (15 年 以前)
作者:
vboxsync
訊息:

rdesktop: fixed parsing of bcdRev and bcdUSB (base is 16 not 10)

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/RDP/client/vrdp/rdpusb.c

    r9902 r20803  
    7979                while (*p == ' ') p++; // skiping spaces
    8080
    81                 h = (uint16)strtoul (p, &p, 10) & 0xFF;
     81                h = (uint16)strtoul (p, &p, 16) & 0xFF;
    8282
    8383                if (*p == '.')
    8484                {
    85                         l = (uint16)strtoul (p + 1, NULL, 10) & 0xFF;
     85                        l = (uint16)strtoul (p + 1, NULL, 16) & 0xFF;
    8686
    8787                        return (h << 8) + l;
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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