Your message dated Wed, 5 Jan 2011 21:19:00 -0600
with message-id <[email protected]>
and subject line Re: Bug#609081: Incorrect use of memset count/value
has caused the Debian Bug report #609081,
regarding Incorrect use of memset count/value
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
609081: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609081
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package:  gretl
Version: 1.7.5-1
Severity: minor

In ./gretl_1.7.5/gui2/database.c

    memset(gzbuf, GRETL_BUFSIZE, 0);

That should be memset(gzbuf, 0, GRETL_BUFSIZE);

--- End Message ---
--- Begin Message ---
Hi Silvio,

On 6 January 2011 at 13:30, Silvio Cesare wrote:
| Package:  gretl
| Version: 1.7.5-1
| Severity: minor
| 
| In ./gretl_1.7.5/gui2/database.c
| 
|     memset(gzbuf, GRETL_BUFSIZE, 0);
| 
| That should be memset(gzbuf, 0, GRETL_BUFSIZE);

Thanks. Note, however, that gretl 1.7.5 is approximately 1 1/2 years old.

The current version, gretl 1.9.3, has it correct:

e...@max:~/src/debian/Misc/gretl-1.9.3$ grep memset gui2/database.c 
    memset(gzbuf, 0, GRETL_BUFSIZE);
        memset(gzbuf, 0, GRETL_BUFSIZE);
        memset(gzbuf, 0, GRETL_BUFSIZE);
        memset(gzbuf, 0, GRETL_BUFSIZE);
e...@max:~/src/debian/Misc/gretl-1.9.3$ 

So I am closing this bug report with a CC to Allin upstream.

Cheers, Dirk

-- 
Dirk Eddelbuettel | [email protected] | http://dirk.eddelbuettel.com


--- End Message ---

Reply via email to