This is the mail archive of the insight@sourceware.org mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

breakpoint setting bug


I've got too much stuff on my plate at the moment.
If this is insufficient, I'll try to do a better
test case later.  Sorry.


In the following code fragment, I set a breakpoint at "emit_file_text"
only to have insight/gdb to set it on line 1227 instead of 1219 or 1222.
Oops.

 	1211	static void
 	1212	emit_file_text (input, remaining_size, restore_name,
 	1213	                quoted_restore_name, split_flag)
 	1214	     FILE * input;
 	1215	     off_t remaining_size;
 	1216	     char const * restore_name;
 	1217	     char const * quoted_restore_name;
 	1218	     int * split_flag;
-	1219	{
 	1220	  char buffer[BUFSIZ];
 	1221	
-	1222	  while (fgets (buffer, BUFSIZ, input))
 	1223	    {
 	1224	
 	1225	      /* Output a line and test the length.  */
 	1226	
	1227	      if (!mandatory_prefix_mode


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