bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lib gdbm


From: Rainer Tammer
Subject: lib gdbm
Date: Wed, 09 Sep 2009 10:12:52 +0200
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8.1.3) Gecko/20070326 Thunderbird/2.0.0.0 Mnenhy/0.7.5.0

Hello,
just a quick question:

Are you still maintaining lib gdbm ?

I have fond a problem on big endian machines in 64 bit mode.

The structure

typedef struct {
    char *dptr;
    int   dsize;
      } datum;

should be

typedef struct {
    char *dptr;
    size_t   dsize;
      } datum;

In 32 bit mode it's just the same.
But in 64 bit mode you get a seg fault without the patch...

Bye
  Rainer




reply via email to

[Prev in Thread] Current Thread [Next in Thread]