TOOLS: Extract_mort - FIX CID 1060932, 1060933
This commit is contained in:
parent
d594f62662
commit
39bbcfa59e
1 changed files with 2 additions and 2 deletions
|
@ -104,9 +104,9 @@ public:
|
||||||
return ftell(f);
|
return ftell(f);
|
||||||
}
|
}
|
||||||
uint32 size() {
|
uint32 size() {
|
||||||
int position = ftell(f);
|
uint32 position = ftell(f);
|
||||||
fseek (f, 0, SEEK_END);
|
fseek (f, 0, SEEK_END);
|
||||||
int end = ftell (f);
|
uint32 end = ftell(f);
|
||||||
fseek (f, position, SEEK_SET);
|
fseek (f, position, SEEK_SET);
|
||||||
|
|
||||||
return end;
|
return end;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue