diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-04-26 18:06:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-04-26 18:06:47 +0000 |
commit | f521be31b96b5ca8b6d24c388d644f5dfcafac7d (patch) | |
tree | 544726903c19e06d378ab4012ee92eea2e74fe64 /inet | |
parent | 4ec77f72fe0978027fb3f35eb0eb0078f24f4b2b (diff) | |
download | glibc-f521be31b96b5ca8b6d24c388d644f5dfcafac7d.zip glibc-f521be31b96b5ca8b6d24c388d644f5dfcafac7d.tar.gz glibc-f521be31b96b5ca8b6d24c388d644f5dfcafac7d.tar.bz2 |
* sysdeps/unix/sysv/linux/libc_pthread_init.c (__libc_pthread_init):
Avoid warning by using may_alias attribute on ptrhack.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/inet6_option.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/inet/inet6_option.c b/inet/inet6_option.c index b34eb22..aa693cc 100644 --- a/inet/inet6_option.c +++ b/inet/inet6_option.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2006 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2006, 2009 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -216,7 +216,8 @@ option_alloc (struct cmsghdr *cmsg, int datalen, int multx, int plusy) /* Too long. */ return NULL; - ((struct ip6_ext *) CMSG_DATA (cmsg))->ip6e_len = len8b; + struct ip6_ext *ie = (void *) CMSG_DATA (cmsg); + ie->ip6e_len = len8b; return result; } |