Bug#605965: [Pkg-libvirt-maintainers] Bug#605965: python-libvirt: segfaults after making lots of readonly connections

2010-12-05 Thread dave b
On 6 December 2010 01:53, Guido Günther wrote: > tag 605965 +unreproducible > > On Sun, Dec 05, 2010 at 04:26:06PM +1100, david b wrote: >> Package: python-libvirt >> Version: 0.8.3-4 >> Severity: normal >> >> Here is an example python script you can use to reproduce the problem: >> >> import libv

Bug#605965: [Pkg-libvirt-maintainers] Bug#605965: python-libvirt: segfaults after making lots of readonly connections

2010-12-05 Thread Guido Günther
tag 605965 +unreproducible On Sun, Dec 05, 2010 at 04:26:06PM +1100, david b wrote: > Package: python-libvirt > Version: 0.8.3-4 > Severity: normal > > Here is an example python script you can use to reproduce the problem: > > import libvirt > import sys > > > def main(): > conn = libvir

Bug#605965: python-libvirt: segfaults after making lots of readonly connections

2010-12-04 Thread david b
Package: python-libvirt Version: 0.8.3-4 Severity: normal Here is an example python script you can use to reproduce the problem: import libvirt import sys def main(): conn = libvirt.openReadOnly(None) if __name__ == "__main__": for i in range(0, 1): main()