kov changed libgksu/trunk/ChangeLog, libgksu/trunk/libgksu/gksu-context.c

Gustavo Noronha kov at costa.debian.org
Sun Apr 16 15:39:56 UTC 2006


Mensagem de log: 
patch from Michael Vogt to fix corner condition which
happens when fgets returns badly with a specific app


-----


Modified: libgksu/trunk/ChangeLog
===================================================================
--- libgksu/trunk/ChangeLog	2006-04-16 15:27:24 UTC (rev 541)
+++ libgksu/trunk/ChangeLog	2006-04-16 15:39:55 UTC (rev 542)
@@ -1,3 +1,9 @@
+2006-04-16  Gustavo Noronha Silva  <kov at debian.org>
+
+	* libgksu/gksu-context.c:
+	- patch from Michael Vogt to fix corner condition which
+	  happens when fgets returns badly with a specific app
+
 2006-04-15  Gustavo Noronha Silva  <kov at debian.org>
 
 	* libgksu/gksu-context.c, libgksu/gksu-run-helper.c:

Modified: libgksu/trunk/libgksu/gksu-context.c
===================================================================
--- libgksu/trunk/libgksu/gksu-context.c	2006-04-16 15:27:24 UTC (rev 541)
+++ libgksu/trunk/libgksu/gksu-context.c	2006-04-16 15:39:55 UTC (rev 542)
@@ -1528,7 +1528,7 @@
 
 	  bzero(buffer, 256);
 	  if(!fgets (buffer, 255, infile))
-	    break;
+	    continue;
 	  fprintf (stderr, "%s", buffer);
 	}
 




More information about the gksu-commits mailing list