VirtualBox

Ignore:
Timestamp:
Jun 25, 2020 9:30:32 AM (5 years ago)
Author:
vboxsync
Message:

VBoxDTrace: A gcc 10.1.1 build fix. bugref:9746

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ExtPacks/VBoxDTrace/generated/dt_lex.c

    r76352 r84936  
    17151715                                errno = 0;
    17161716                                yylval.l_int = strtoull(v, &p, 0);
    1717 #else
    1718                                 rc = RTStrToUInt64Ex(v, &p, 0, &yylval.l_int);
    1719 #endif
    17201717                                (void) strncpy(yyintsuffix, p,
    17211718                                    sizeof (yyintsuffix));
     1719#else
     1720                                rc = RTStrToUInt64Ex(v, &p, 0, &yylval.l_int);
     1721                                RTStrCopy(yyintsuffix, sizeof(yyintsuffix), p);
     1722#endif
    17221723                                yyintdecimal = *v != '0';
    17231724
     
    18241825                        errno = 0;
    18251826                        yylval.l_int = strtoull(yytext, &p, 0);
     1827                        (void) strncpy(yyintsuffix, p, sizeof (yyintsuffix));
    18261828#else
    18271829                        int rc = RTStrToUInt64Ex(yytext, &p, 0, &yylval.l_int);
     1830                        RTStrCopy(yyintsuffix, sizeof(yyintsuffix), p);
    18281831#endif
    18291832                        yyintprefix = 0;
    1830                         (void) strncpy(yyintsuffix, p, sizeof (yyintsuffix));
    18311833                        yyintdecimal = yytext[0] != '0';
    18321834
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