On Mon, 2009-06-08 at 13:33 +0200, Jiri Palecek wrote: > Hello, > > there was a crash in pan when the zoofile couldn't be opened; this patch > fixes it by disallowing the zoo_open function to continue. > > Regards > Jiri Palecek > > Signed-off-by: Jiri Palecek <[email protected]>
Thanks. Regards-- Subrata > > --- > pan/zoolib.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/pan/zoolib.c b/pan/zoolib.c > index 3e31733..72ddfb0 100644 > --- a/pan/zoolib.c > +++ b/pan/zoolib.c > @@ -104,6 +104,7 @@ zoo_open(char *zooname) > snprintf(zoo_error, ZELEN, > "Could not open zoo as \"%s\", errno:%d %s", > zooname, errno, strerror(errno)); > + return 0; > } > fclose(new_zoo); > new_zoo = fopen(zooname, "r+"); ------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
