The following commit has been merged in the master branch:
commit 57ca77786eb6c04519f9358f1456fdf5b8006757
Author: Benjamin Kaduk <[email protected]>
Date:   Wed Sep 17 12:07:02 2014 -0400

    Fix disk name initialization in scout
    
    Scout needs to initialize names in scout_disk structures to prevent
    the use of uninitialized data.  However, '\0' is a NUL character
    constant, i.e., the integer value 0, which is interpreted as NULL
    (the pointer constant) in a pointer context, such as when assigned to
    a variable of type char*.  Since the name field in these structs is
    passed to printing routines, the safe initialization value is the
    empty string constant "", not a zero value.
    
    Change-Id: Ie0530fc4fc090b226c0e54201b4a74158efddebd
    Reviewed-on: http://gerrit.openafs.org/11469
    Tested-by: BuildBot <[email protected]>
    Reviewed-by: Chas Williams - CONTRACTOR <[email protected]>
    Reviewed-by: Perry Ruiter <[email protected]>
    Reviewed-by: Jeffrey Altman <[email protected]>

 src/scout/scout.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-- 
OpenAFS Master Repository
_______________________________________________
OpenAFS-cvs mailing list
[email protected]
https://lists.openafs.org/mailman/listinfo/openafs-cvs

Reply via email to