Compare commits

...

3 Commits

Author SHA1 Message Date
Oliver Tappe
107d3d5cca * updated version for current build
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@37482 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-07-12 18:29:57 +00:00
Oliver Tappe
1e5b315f7e * fix infinite loop when the utf-8 -> utf-32 converter encounters an invalid
utf-8 sequence/byte


git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@37479 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-07-12 15:58:03 +00:00
Oliver Tappe
5f114e19ea * fix build when building gcc2 with gcc2 (c89-syntax)
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@37475 a95241bf-73f2-0310-859d-f6bbb57e9c96
2010-07-11 20:51:57 +00:00
3 changed files with 7 additions and 5 deletions

View File

@@ -1989,6 +1989,7 @@ yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -2008,7 +2009,6 @@ yylex ()
"literal");
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = GETC ();
@@ -2156,6 +2156,7 @@ yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -2173,9 +2174,9 @@ yylex ()
default:
warning ("Skipping invalid UTF-8 byte in wide char "
"string literal");
c = GETC ();
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = GETC ();

View File

@@ -4099,6 +4099,7 @@ real_yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -4118,7 +4119,6 @@ real_yylex ()
"literal");
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = getch ();
@@ -4272,6 +4272,7 @@ real_yylex ()
{
unsigned int value;
int len;
int i;
switch (c & 0xF0)
{
case 0xF0:
@@ -4289,9 +4290,9 @@ real_yylex ()
default:
warning ("Skipping invalid UTF-8 byte in wide char "
"string literal");
c = getch ();
continue;
}
int i;
for (i = 1; i < len; ++i)
{
c = getch ();

View File

@@ -1 +1 @@
char *version_string = "2.95.3-haiku-100420";
char *version_string = "2.95.3-haiku-100712";