summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-07-16 23:20:03 +0000
committerMartin Storsjö <martin@martin.st>2010-07-16 23:20:03 +0000
commitd5e9ddeb73ebcb18a369f6f682ae45e0d7feab3e (patch)
treed14bcb50b13e3477dd9b28122c74f046bd531b05 /libavformat/aviobuf.c
parent5c32755570a155779cbad79cc7de50d9eca5d4c7 (diff)
url_fskip: Return an error code if the url_fseek failed
Originally committed as revision 24277 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 9f1187efe7..d4db268225 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -182,9 +182,10 @@ int64_t url_fseek(ByteIOContext *s, int64_t offset, int whence)
return offset;
}
-void url_fskip(ByteIOContext *s, int64_t offset)
+int url_fskip(ByteIOContext *s, int64_t offset)
{
- url_fseek(s, offset, SEEK_CUR);
+ int64_t ret = url_fseek(s, offset, SEEK_CUR);
+ return ret < 0 ? ret : 0;
}
int64_t url_ftell(ByteIOContext *s)