* interp.c (strswaplen): Add one for '\0' delimiter.

This commit is contained in:
Joern Rennecke 2005-08-02 16:17:59 +00:00
parent f1ea48cbd9
commit 63bee80353
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-08-02 J"orn Rennecke <joern.rennecke@st.com>
* interp.c (strswaplen): Add one for '\0' delimiter.
2005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
* gencode.c (tab): Avoid lvalue casts. Suggested by

View File

@ -959,6 +959,10 @@ ptr (x)
return (char *) (x + saved_state.asregs.memory);
}
/* STR points to a zero-terminated string in target byte order. Return
the number of bytes that need to be converted to host byte order in order
to use this string as a zero-terminated string on the host.
(Not counting the rounding up needed to operate on entire words.) */
static int
strswaplen (str)
int str;
@ -971,7 +975,7 @@ strswaplen (str)
return 0;
end = str;
for (end = str; memory[end ^ endian]; end++) ;
return end - str;
return end - str + 1;
}
static void