VirtualBox

Changeset 5733 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 13, 2007 11:16:51 PM (17 years ago)
Author:
vboxsync
Message:

no control chars, please.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp

    r5731 r5733  
    21122112                {
    21132113                    uint8_t u8 = *(uint8_t *)&achBuffer[i];
    2114                     if (isprint(u8) && u8 < 127)
     2114                    if (isprint(u8) && u8 < 127 && u8 >= 32)
    21152115                        pCmdHlp->pfnPrintf(pCmdHlp, NULL, "%c", u8);
    21162116                    else
     
    21352135                u8 = *(uint8_t *)&achBuffer[i];
    21362136                if (    u8 < 127
    2137                     && (    isprint(u8)
     2137                    && (    (isprint(u8) && u8 >= 32)
    21382138                        ||  u8 == '\t'
    21392139                        ||  u8 == '\n'))
Note: See TracChangeset for help on using the changeset viewer.

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