This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc 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]

GNU C Library master sources branch, master, updated. glibc-2.14-328-gfde56e5


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  fde56e5cc5011d8c0de39290af0e76d884d07624 (commit)
      from  5a06e643335ca2f7a2f92ae54962d59771cb074b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=fde56e5cc5011d8c0de39290af0e76d884d07624

commit fde56e5cc5011d8c0de39290af0e76d884d07624
Author: Marek Polacek <mpolacek@redhat.com>
Date:   Fri Oct 7 11:00:13 2011 -0400

    elf/dl-load.c: Avoid warning

diff --git a/ChangeLog b/ChangeLog
index 88b9b4f..c369539 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-09-12  Marek Polacek  <mpolacek@redhat.com>
+
+	* elf/dl-load.c (lose): Add cast to avoid warning.
+
 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
 
 	* po/ca.po: Update from translation team.
diff --git a/elf/dl-load.c b/elf/dl-load.c
index b8a2659..f3717ea 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -889,7 +889,7 @@ lose (int code, int fd, const char *name, char *realname, struct link_map *l,
   if (fd != -1)
     (void) __close (fd);
   if (l != NULL && l->l_origin != (char *) -1l)
-    free (l->l_origin);
+    free ((char *) l->l_origin);
   free (l);
   free (realname);
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog     |    4 ++++
 elf/dl-load.c |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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