openbsd-ports/textproc/scrollkeeper/patches/patch-libs_install_c
marcm 9da68bc307 Stop scrollkeeper from opening it's "database" once for each *.omf file
without closing it.  A "base" Gnome 2 install has over 160 *.omf files
so this would play havoc with the default open file limits.

Bump version number accordingly.

Also add the scrollkeeper logs to the @extra list.
2003-09-29 05:59:33 +00:00

12 lines
324 B
Plaintext

$OpenBSD: patch-libs_install_c,v 1.1 2003/09/29 05:59:33 marcm Exp $
--- libs/install.c.orig 2003-09-27 09:46:36.000000000 -0700
+++ libs/install.c 2003-09-27 09:47:16.000000000 -0700
@@ -409,6 +409,7 @@ static int get_unique_doc_id(char *filen
unique_id = id;
}
+ fclose(fid);
return unique_id + 1;
}