bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: assertion fault. on loggin


From: Paul Edwards
Subject: Re: assertion fault. on loggin
Date: Mon, 11 Aug 2003 11:25:34 GMT

<pceteaudatmacif.fr@netcourrier.com> wrote in message 
news:mailman.301.1060592837.29551.bug-cvs@gnu.org...
> Le sous-programme assert a ÚchouÚ : fstat ( fileno (bc->fp), &s ) != -1, 
> fichier
> /u/scjones/cvs-nightly/src/buffer.c, ligne 1384
> cvs-1.11.5-AIX [login aborted]: received abort signal

Can you try running with cvs 1.11.6 with the following
modification.  Replace the assert as follows:

Index: buffer.c
===================================================================
RCS file: /cvs/ccvs/src/buffer.c,v
retrieving revision 1.21.4.1
diff -r1.21.4.1 buffer.c
1384c1384,1394
<     assert (fstat ( fileno (bc->fp), &s ) != -1);
---
>     {
>     int fn;
>
>     if (fstat ( (fn = fileno (bc->fp)), &s ) == -1)
>     {
>         printf("bc is %p\n", bc);
>         printf("bc->fp is %p\n", bc->fp);
>         printf("fn is %d\n", fn);
>         *(char *)0 = '\0';
>     }
>     }

Hopefully that will produce a core dump and you can post the
traceback and maybe that will shed light on the problem.

BFN.  Paul.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]