You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafficserver.apache.org by "Masaori Koshiba (JIRA)" <ji...@apache.org> on 2016/06/30 02:02:12 UTC

[jira] [Resolved] (TS-4605) Coverity issue 1357058: Uninitialized members in PriorityQueue.h

     [ https://issues.apache.org/jira/browse/TS-4605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Masaori Koshiba resolved TS-4605.
---------------------------------
    Resolution: Fixed

> Coverity issue 1357058: Uninitialized members in PriorityQueue.h
> ----------------------------------------------------------------
>
>                 Key: TS-4605
>                 URL: https://issues.apache.org/jira/browse/TS-4605
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: Core
>            Reporter: Leif Hedstrom
>            Assignee: Masaori Koshiba
>             Fix For: 7.0.0
>
>
> {code}
> ** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry<RefCountCacheHashEntry *>::PriorityQueueEntry()()
> ________________________________________________________________________________________________________
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry<RefCountCacheHashEntry *>::PriorityQueueEntry()()
> 26     
> 27     #include "ts/ink_assert.h"
> 28     #include "ts/Vec.h"
> 29     
> 30     template <typename T> struct PriorityQueueEntry {
> 31       PriorityQueueEntry(T n) : index(0), node(n){};
>    CID 1357058:  Uninitialized members  (UNINIT_CTOR)
>    Non-static class member "node" is not initialized in this constructor nor in any functions that it calls.
> 32       PriorityQueueEntry() : index(0){};
> 33       uint32_t index;
> 34       T node;
> 35     };
> 36     
> 37     template <typename T> struct PriorityQueueLess {
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)