mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
fileserver-no-longer-asserts-when-read-past-EOF-20040413
This commit is contained in:
parent
4a0729240a
commit
1757180dab
@ -6690,7 +6690,7 @@ FetchData_RXStyle(Volume * volptr, Vnode * targetptr,
|
||||
{
|
||||
afs_int32 high, low;
|
||||
SplitOffsetOrSize(Len, high, low);
|
||||
assert(Int64Mode || high == 0);
|
||||
assert(Int64Mode || (Len >= 0 && high == 0) || Len < 0);
|
||||
if (Int64Mode) {
|
||||
high = htonl(high);
|
||||
rx_Write(Call, (char *)&high, sizeof(afs_int32)); /* High order bits */
|
||||
|
Loading…
Reference in New Issue
Block a user