summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2013-12-17 07:31:59 -0800
committerKaz Kylheku <kaz@kylheku.com>2013-12-17 07:31:59 -0800
commitad61d6202ad62eba4fd3c97ccba74e26c0cb5ac7 (patch)
treec97f0847538b84cb42d1f572d3f2e5a262d1438c /stream.c
parent89c4dc269d0d6e0b36a4cad0d4cb7d5751daad98 (diff)
downloadtxr-ad61d6202ad62eba4fd3c97ccba74e26c0cb5ac7.tar.gz
txr-ad61d6202ad62eba4fd3c97ccba74e26c0cb5ac7.tar.bz2
txr-ad61d6202ad62eba4fd3c97ccba74e26c0cb5ac7.zip
* stream.c (stdio_seek): Bugfix. Was returning current position
whenever offset is zero, regardless of whence argument.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index c20b3ca5..a9be6fd2 100644
--- a/stream.c
+++ b/stream.c
@@ -257,7 +257,7 @@ static val stdio_seek(val stream, cnum offset, enum strm_whence whence)
struct stdio_handle *h = (struct stdio_handle *) stream->co.handle;
if (h->f != 0) {
- if (offset == 0) {
+ if (offset == 0 && whence == strm_cur) {
long where = ftell(h->f);
if (where >= 0)
return num(where);