projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0a4d24
)
ZOOM: throw present request out of range again YAZ-739
author
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 18 Feb 2014 15:19:47 +0000
(16:19 +0100)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 18 Feb 2014 15:25:26 +0000
(16:25 +0100)
Was removed in YAZ 5.0.13.
src/zoom-z3950.c
patch
|
blob
|
history
diff --git
a/src/zoom-z3950.c
b/src/zoom-z3950.c
index
ad46592
..
2835262
100644
(file)
--- a/
src/zoom-z3950.c
+++ b/
src/zoom-z3950.c
@@
-1577,10
+1577,9
@@
zoom_ret ZOOM_connection_Z3950_search(ZOOM_connection c)
if (resultset->live_set)
{
- if (*start >= resultset->size)
- return zoom_complete;
if (*start + *count > resultset->size)
- *count = resultset->size - *start;
+ ZOOM_set_dset_error(c, YAZ_BIB1_PRESENT_REQUEST_OUT_OF_RANGE, "Bib-1",
+ 0, 0);
}
if (c->error) /* don't continue on error */