I've narrowed down the source of the bug in the standard library. The
following code displays the same segfault that mutt shows.
#include <stdio.h>
#include <errno.h>
int main (int argc, char **argv)
{
char folder[30] = "testfile";
FILE *fp = fopen (folder, "r");
fp = freopen (folder, "r+", fp);
ftell (fp);
return 0;
}
I therefore believe that this bug is not related to mutt, and should be closed.
Thanks.
--
Patrick Draper --- [EMAIL PROTECTED]
Austin, Texas --- http://www.pdrap.org
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]