projects
/
idzebra-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:
4494cb5
)
Fixed bug in r_open (isam:s)
author
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 1 Jun 2006 13:05:52 +0000
(13:05 +0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 1 Jun 2006 13:05:52 +0000
(13:05 +0000)
rset/rsisams.c
patch
|
blob
|
history
diff --git
a/rset/rsisams.c
b/rset/rsisams.c
index
6b5f41c
..
6dc81e9
100644
(file)
--- a/
rset/rsisams.c
+++ b/
rset/rsisams.c
@@
-1,4
+1,4
@@
-/* $Id: rsisams.c,v 1.24 2006-05-10 08:13:33 adam Exp $
+/* $Id: rsisams.c,v 1.25 2006-06-01 13:05:52 adam Exp $
Copyright (C) 1995-2005
Index Data ApS
@@
-90,9
+90,9
@@
RSFD r_open (RSET ct, int flag)
ptinfo=(struct rfd_private *)(rfd->priv);
else {
ptinfo = (struct rfd_private *) nmem_malloc(ct->nmem,sizeof(*ptinfo));
- ptinfo->pt = isams_pp_open (info->is, info->pos);
rfd->priv=ptinfo;
}
+ ptinfo->pt = isams_pp_open (info->is, info->pos);
return rfd;
}