VirtualBox

Ignore:
Timestamp:
Aug 15, 2016 2:32:20 PM (8 years ago)
Author:
vboxsync
Message:

DIS: warnings (clang)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_lex.l

    r63369 r63484  
    314314                                yylval.l_int = strtoull(v, &p, 0);
    315315#else
    316                                 rc = RTStrToUInt64Ex(v, &p, 0, &yylval.l_int);
     316                                {
     317                                   uint64_t uTmp = 0;
     318                                    rc = RTStrToUInt64Ex(v, &p, 0, &uTmp);
     319                                    yylval.l_int = uTmp;
     320                                }
    317321#endif
    318322                                (void) strncpy(yyintsuffix, p,
     
    403407                        yylval.l_int = strtoull(yytext, &p, 0);
    404408#else
    405                         int rc = RTStrToUInt64Ex(yytext, &p, 0, &yylval.l_int);
     409                        uint64_t uTmp = 0;
     410                        int rc = RTStrToUInt64Ex(yytext, &p, 0, &uTmp);
     411                        yylval.l_int = uTmp;
    406412#endif
    407413                        yyintprefix = 0;
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