diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-26 15:26:31 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-26 15:26:31 +0100 |
commit | 57be1eefab8494efd96bcec0f54a84cef3f61e95 (patch) | |
tree | f8bf39c2184693726dd06bc4a084054f02d1e761 /networking | |
parent | 1e1136025b2e6316f2cfaca76699a2d9de900aef (diff) | |
download | busybox-w32-57be1eefab8494efd96bcec0f54a84cef3f61e95.tar.gz busybox-w32-57be1eefab8494efd96bcec0f54a84cef3f61e95.tar.bz2 busybox-w32-57be1eefab8494efd96bcec0f54a84cef3f61e95.zip |
ping: fix unaligned access. closes bug 745.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ping.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/ping.c b/networking/ping.c index c7b6cbe9a..4e770bdbd 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -690,7 +690,8 @@ static void ping6(len_and_sockaddr *lsa) | |||
690 | /* don't check len - we trust the kernel: */ | 690 | /* don't check len - we trust the kernel: */ |
691 | /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */ | 691 | /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */ |
692 | ) { | 692 | ) { |
693 | hoplimit = *(int*)CMSG_DATA(mp); | 693 | /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */ |
694 | move_from_unaligned_int(hoplimit, CMSG_DATA(mp)); | ||
694 | } | 695 | } |
695 | } | 696 | } |
696 | unpack6(packet, c, /*&from,*/ hoplimit); | 697 | unpack6(packet, c, /*&from,*/ hoplimit); |