am ee3a2443: Merge change Ic532c956 into eclair-mr2

Merge commit 'ee3a2443deb39ad9ce65293c045d34b9198cc57a' into eclair-mr2-plus-aosp

* commit 'ee3a2443deb39ad9ce65293c045d34b9198cc57a':
  Note to self: Don't reverse the arguments to fseek(o)...
This commit is contained in:
Andreas Huber
2009-12-09 15:46:03 -08:00
committed by Android Git Automerger

View File

@@ -70,7 +70,7 @@ status_t FileSource::getSize(off_t *size) {
return OK;
}
fseek(mFile, SEEK_END, 0);
fseek(mFile, 0, SEEK_END);
*size = ftello(mFile);
return OK;