While debugging the libvirt-java error handling problem, Ive found that
if I call the test driver with a bad uri, the application instantly
bombs with a
double free error.
Try to run the attached test program to trigger the bug.
regards
István
#include <libvirt/libvirt.h>
#include <stdio.h>
int main(){
int ret=virInitialize();
virConnectOpen("test:///defaultt");
}