Skip to content
Snippets Groups Projects
Commit 5b3e3e23 authored by rswindell's avatar rswindell
Browse files

Need typecast for proper signed offset range check (caught by Watcom C++).

parent c0413cc5
No related branches found
No related tags found
No related merge requests found
......@@ -1739,7 +1739,7 @@ long SMBCALL smb_allocdat(smb_t* smb, ulong length, ushort refs)
j=0; /* j is consecutive unused block counter */
fflush(smb->sda_fp);
rewind(smb->sda_fp);
while(!feof(smb->sda_fp) && offset>=0) {
while(!feof(smb->sda_fp) && (long)offset>=0) {
if(smb_fread(smb,&i,sizeof(i),smb->sda_fp)!=sizeof(i))
break;
offset+=SDT_BLOCK_LEN;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment