lwip-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, up


From: Dirk Ziegelmeier
Subject: [lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. master_at_STABLE-2_0_0-586-g32aa9a4
Date: Wed, 19 Apr 2017 00:35:21 -0400 (EDT)

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 "lwIP - A Lightweight TCPIP stack".

The branch, master has been updated
       via  32aa9a41e2013e5ee6eee09317a848647e37badf (commit)
      from  8e83e206f4e19566e88d5aec6f58dd4736ae43f8 (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 -----------------------------------------------------------------
commit 32aa9a41e2013e5ee6eee09317a848647e37badf
Author: Dirk Ziegelmeier <address@hidden>
Date:   Wed Apr 19 06:35:07 2017 +0200

    Apply patch from Kudratov Olimjon: Array index used before limits check
    
    while ((q != NULL) && (options[offset] != DHCP_OPTION_END) && (offset < 
offset_max)) {
    should be
    while ((q != NULL) && (offset < offset_max) && (options[offset] != 
DHCP_OPTION_END)) {
    
    See https://jira.reactos.org/browse/CORE-8978 for more info.

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

Summary of changes:
 src/core/ipv4/dhcp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
lwIP - A Lightweight TCPIP stack



reply via email to

[Prev in Thread] Current Thread [Next in Thread]