lynx-dev
[Top][All Lists]
Advanced

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

lynx-dev Re: lynx2.8.1dev.19 + FORM_OPTIONS => Fatal Error!


From: Leonid Pauzner
Subject: lynx-dev Re: lynx2.8.1dev.19 + FORM_OPTIONS => Fatal Error!
Date: Sat, 1 Aug 1998 20:38:00 +0400 (MSD)

I wrote:
>
> Clean 2.8.1dev.19 & -DEXP_FORMS_OPTIONS brings out exit with fatal error
> when I try to 'assept changes' from new options menu.
>
> on Linux I got exit with signal 11,
> on DJGPP exit with signal 291.
>
> (there was no problem with dev18+(Mike Castle's patch) on DJGPP at least)
>

This is due to LYstrsep(),
by changind them back to strsep() everything became OK.

@@ -3220,11 +3211,11 @@
        /*
         * First, break up on '&', sliding 'p' on down the line.
         */
-       q[count].value = strsep(&p, "&");
+       q[count].value = LYstrsep(&p, "&");
        /*
         * Then break up on '=', sliding value down, and setting tag.
         */
-       q[count].tag = strsep(&(q[count].value), "=");
+       q[count].tag = LYstrsep(&(q[count].value), "=");

        /*
         * Clean them up a bit, in case user entered a funky string.
@@ -3249,13 +3240,6 @@
  * Handle options from the pseudo-post.  I think we really only need
  * post_data here, but bring along everything just in case.  It's only a
  * pointer.  MRC



reply via email to

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