[Pkg-shadow-commits] r1146 - in branches/etch/debian: . patches

Christian Perrier bubulle at alioth.debian.org
Thu Dec 7 18:52:10 CET 2006


Author: bubulle
Date: 2006-12-07 18:52:10 +0100 (Thu, 07 Dec 2006)
New Revision: 1146

Modified:
   branches/etch/debian/changelog
   branches/etch/debian/patches/403_fix_PATH-MAX_hurd
Log:
Fix for #402002


Modified: branches/etch/debian/changelog
===================================================================
--- branches/etch/debian/changelog	2006-11-27 21:39:13 UTC (rev 1145)
+++ branches/etch/debian/changelog	2006-12-07 17:52:10 UTC (rev 1146)
@@ -4,6 +4,10 @@
   * Upstream translation updates:
     - debian/patches/404_man-fr: Fix the French translation of 
       passwd.1. Closes: #395537
+  * Upstream bugs or fixes not yet fixed in upstream releases or CVS:
+    - 403_fix_PATH-MAX_hurd: fixed glibc error on Hurd by not freeing f
+      unconditionnally. Thanks to Michael banck for the patch fix
+      Closes: #402002
 
  -- Christian Perrier <bubulle at debian.org>  Sat, 28 Oct 2006 07:26:16 +0200
 

Modified: branches/etch/debian/patches/403_fix_PATH-MAX_hurd
===================================================================
--- branches/etch/debian/patches/403_fix_PATH-MAX_hurd	2006-11-27 21:39:13 UTC (rev 1145)
+++ branches/etch/debian/patches/403_fix_PATH-MAX_hurd	2006-12-07 17:52:10 UTC (rev 1146)
@@ -8,9 +8,9 @@
 
 Index: shadow-4.0.18.1/lib/commonio.c
 ===================================================================
---- shadow-4.0.18.1.orig/lib/commonio.c	2006-09-17 12:25:14.567508078 +0200
-+++ shadow-4.0.18.1/lib/commonio.c	2006-09-17 12:25:25.799597357 +0200
-@@ -47,20 +47,34 @@
+--- shadow-4.0.18.1/lib/commonio.c.orig	2006-12-07 06:57:01.000000000 +0000
++++ shadow-4.0.18.1/lib/commonio.c	2006-12-07 06:57:40.000000000 +0000
+@@ -46,17 +47,31 @@
  int lrename (const char *old, const char *new)
  {
  
@@ -38,12 +38,9 @@
 -			new = resolved_path;
 +			new = r;
  		}
- 	}
- #endif
- 	res = rename (old, new);
 +#ifndef PATH_MAX
 +	free (r);
 +#endif
- 	return res;
- }
- 
+ 	}
+ #endif
+ 	res = rename (old, new);




More information about the Pkg-shadow-commits mailing list