12 Jan
2010
12 Jan
'10
4:47 p.m.
On 8.1.2010, at 10.34, Ralf Hildebrandt wrote:
p *rec
(gdb) p *rec $2 = {uid = 1721, flags = 8, filename = 0x9c4e2b0 "1247223070.M198961P26186.postamt.charite.de,S=4080,W=4182:2,Sa", extensions = 0x0}
rec->uid is 1721.
(gdb) p *recs[0] $4 = {uid = 1962, flags = 8, filename = 0x9c531a8 "1262613886.M868332P16003.postamt.charite.de,W=39324,S=38791:2,Sa", extensions = 0x0} ..
- is rec->uid anywhere in the recs array?
I don't understand this question. All the entries recs[0] ... recs[56] are containing entries like the ones above.
1721 is not in the recs[] list, since it's sorted and the first one is 1962.
So there's something weird going on why it's in the filename hash table, but not in the array. I'll try to figure it out later..