This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Debugging


Thanks for all your help!  I have isolated the problem to a binary file
read error.

	f.open("bindings.dat", ios::in | ios::binary);

	while (!f.eof()) {

		f.read((unsigned char*)(tok), sizeof(int) * 3);

	// code follows here to test data

	};


The data is written to this file in chunks of 3 integers.  Now, the file is
0 bytes because there is no data written.  When I test the file open I find
f.bad() and f.fail() both return nonzero values.  I feel this is probably
something simple, but can anyone tell me what is wrong here?  Will this
error always occur with 0 length files?  The bad() being set sounds...
well, bad.

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]