Update of /cvsroot/lxr/lxr
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29829
Modified Files:
genxref
Log Message:
Feature 1691378 (Rearchitect the DB backends) Part IX
* Converted Postgres to an object-orientated style
Note: an explicit call to the destructor of the LXR::Index was required since Perl wasn't doing it as part of the global destruction (on win32 v5.8.8)
Index: genxref
===================================================================
RCS file: /cvsroot/lxr/lxr/genxref,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- genxref 22 Apr 2009 15:16:57 -0000 1.41
+++ genxref 9 May 2009 21:57:34 -0000 1.42
@@ -95,6 +95,8 @@
genrefs('/', $version);
}
+$index->DESTROY();
+
sub genindex {
my ($pathname, $release) = @_;
|