octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #57632] 5.1.90 crash on cygwin


From: Kai Torben Ohlhus
Subject: [Octave-bug-tracker] [bug #57632] 5.1.90 crash on cygwin
Date: Tue, 21 Jan 2020 00:20:23 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36

Follow-up Comment #5, bug #57632 (project octave):

Then next I think about the file position manipulation to fail.  How about
this programs?

Program 1 (File write and read in separate operations):


f = tempname ();
fid = fopen (f, "w+");
fprintf (fid, "1\n2\n3\n4\n5\n6");
fclose (fid);
fid = fopen (f, "r+");
c = textscan (fid, "%f %f", 2);
E = feof (fid);
fclose (fid);
unlink (f);
assert (! E);


Program 2 (fgets instead of textscan):


f = tempname ();
fid = fopen (f, "w+");
fprintf (fid, "1\n2\n3\n4\n5\n6");
fseek (fid, 0, "bof");
str = fgets (fid);
disp (str);
fclose (fid);
unlink (f);



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?57632>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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