Changeset 84936 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/generated/dt_lex.c
- Timestamp:
- Jun 25, 2020 9:30:32 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/generated/dt_lex.c
r76352 r84936 1715 1715 errno = 0; 1716 1716 yylval.l_int = strtoull(v, &p, 0); 1717 #else1718 rc = RTStrToUInt64Ex(v, &p, 0, &yylval.l_int);1719 #endif1720 1717 (void) strncpy(yyintsuffix, p, 1721 1718 sizeof (yyintsuffix)); 1719 #else 1720 rc = RTStrToUInt64Ex(v, &p, 0, &yylval.l_int); 1721 RTStrCopy(yyintsuffix, sizeof(yyintsuffix), p); 1722 #endif 1722 1723 yyintdecimal = *v != '0'; 1723 1724 … … 1824 1825 errno = 0; 1825 1826 yylval.l_int = strtoull(yytext, &p, 0); 1827 (void) strncpy(yyintsuffix, p, sizeof (yyintsuffix)); 1826 1828 #else 1827 1829 int rc = RTStrToUInt64Ex(yytext, &p, 0, &yylval.l_int); 1830 RTStrCopy(yyintsuffix, sizeof(yyintsuffix), p); 1828 1831 #endif 1829 1832 yyintprefix = 0; 1830 (void) strncpy(yyintsuffix, p, sizeof (yyintsuffix));1831 1833 yyintdecimal = yytext[0] != '0'; 1832 1834
Note:
See TracChangeset
for help on using the changeset viewer.