Your message dated Tue, 18 Mar 2008 05:32:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#469008: fixed in viewmol 2.4.1-13
has caused the Debian Bug report #469008,
regarding viewmol: may use different memory API for a given memory block
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.)


-- 
469008: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=469008
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: viewmol
Severity: important
User: [EMAIL PROTECTED]
Usertags: goal-python2.5

The C API requires using the same memory API for a given memory block,
which will show up as a segfault, at least in python2.5. This code was
found by a search of all sources build-depending on python-dev, having
a PyObject_ function for allocation and a PyMem_ function for
deallocation in the same file.  This may be a real problem, or a false
positive.

The most common error seen is of the form:

  PyObject *
  new_wadobject(WadFrame *f, int count) {
    wadobject   *self;
    self = PyObject_NEW(wadobject, &WadObjectType);
    [...]
  }

  static void
  wadobject_dealloc(wadobject *self) {
    PyMem_DEL(self);
  }

This particular example can be fixed with replacing PyMem_DEL with
PyObject_Del.

For more information, see
http://docs.python.org/api/memory.html
http://docs.python.org/api/memoryExamples.html

Please set the severity of this report to "serious", if it is a real
problem, please close the report if it is a false positive.  Ask
the [EMAIL PROTECTED] ML for help. Archive of the
search results: http://ftp-master.debian.org/~he/affected-files.tar.gz



--- End Message ---
--- Begin Message ---
Source: viewmol
Source-Version: 2.4.1-13

We believe that the bug you reported is fixed in the latest version of
viewmol, which is due to be installed in the Debian FTP archive:

viewmol_2.4.1-13.diff.gz
  to pool/main/v/viewmol/viewmol_2.4.1-13.diff.gz
viewmol_2.4.1-13.dsc
  to pool/main/v/viewmol/viewmol_2.4.1-13.dsc
viewmol_2.4.1-13_i386.deb
  to pool/main/v/viewmol/viewmol_2.4.1-13_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons <[EMAIL PROTECTED]> (supplier of updated viewmol package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Tue, 18 Mar 2008 16:02:08 +1100
Source: viewmol
Binary: viewmol
Architecture: source i386
Version: 2.4.1-13
Distribution: unstable
Urgency: low
Maintainer: Drew Parsons <[EMAIL PROTECTED]>
Changed-By: Drew Parsons <[EMAIL PROTECTED]>
Description: 
 viewmol    - A graphical front end for computational chemistry programs.
Closes: 466998 469008
Changes: 
 viewmol (2.4.1-13) unstable; urgency=low
 .
   * Use PyObject_Del to deallocate PyObjects instead of PyMem_DEL.
     Thanks Barry deFreese for the patch.  Closes: #469008.
   * Don't create separate links for KDE support files in /usr/share/applnk
     anymore. These are handled generically (for all compliant Desktop
     environments including Gnome) via
     /usr/share/applications/viewmol.desktop.  Closes: #466998.
   * Update debian/viewmol.sgml and doc-base to encode Jörg-Rüdiger's
     name in UTF-8. Regenerate viewmol.1 using docbook2man.
   * Where pythonlib is defined in source/getmachine, add
          | xargs echo | awk '{print $1}'
     to ensure only one path is passed to dirname.
Files: 
 afb787ea5704257611a62d91f06a3e49 790 science optional viewmol_2.4.1-13.dsc
 aa02234b42883ecea7d529b08da03822 12887 science optional 
viewmol_2.4.1-13.diff.gz
 6e65c5e1109cdeb193653b398480d349 2193570 science optional 
viewmol_2.4.1-13_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFH306Zts5wQWQSTkoRAnA2AJ0eFtsOsp13Ab7BjFvrxg/ohv2h/QCeOPtM
pJUixlnCCqFlC3kIdAXIYzI=
=JJL8
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to