Ticket #11690: 0001-Fix-CID-1255187-1255202-1255213-1255260-1255308.patch

File 0001-Fix-CID-1255187-1255202-1255213-1255260-1255308.patch, 825 bytes (added by puckipedia, 9 years ago)
  • headers/private/userlandfs/shared/HashMap.h

    From f5e837342b3e0a724680bb755c4fb484b35cc4f9 Mon Sep 17 00:00:00 2001
    From: Puck Meerburg <puck@puckipedia.nl>
    Date: Sat, 27 Dec 2014 17:51:56 +0100
    Subject: [PATCH 1/3] Fix CID 1255187, 1255202, 1255213, 1255260, 1255308
    
    ---
     headers/private/userlandfs/shared/HashMap.h | 6 ++++--
     1 file changed, 4 insertions(+), 2 deletions(-)
    
    diff --git a/headers/private/userlandfs/shared/HashMap.h b/headers/private/userlandfs/shared/HashMap.h
    index eac031d..dc63af4 100644
    a b public:  
    2323    HashMapElement()
    2424        :
    2525        fKey(),
    26         fValue()
     26        fValue(),
     27        fNext(NULL)
    2728    {
    2829    }
    2930
    3031    HashMapElement(const Key& key, const Value& value)
    3132        :
    3233        fKey(key),
    33         fValue(value)
     34        fValue(value),
     35        fNext(NULL)
    3436    {
    3537    }
    3638