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

2016-06-29 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on TS-4605:


Github user masaori335 closed the pull request at:

https://github.com/apache/trafficserver/pull/767


> 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 *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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


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

2016-06-29 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on TS-4605:
-

Commit e1a37058fc14646f517c304b6d277c788a9c0462 in trafficserver's branch 
refs/heads/master from [~masaori]
[ https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=e1a3705 ]

TS-4605: fix Coverity issue 1357058


> 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 *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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


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

2016-06-29 Thread ASF subversion and git services (JIRA)

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

ASF subversion and git services commented on TS-4605:
-

Commit c64ce724b1fe1225d44ede9967d682bc4c54eed5 in trafficserver's branch 
refs/heads/master from [~masaori]
[ https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=c64ce72 ]

Merge pull request #767 from masaori335/ts-4605

TS-4605: fix Coverity issue 1357058

> 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 *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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


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

2016-06-29 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on TS-4605:


Github user zwoop commented on the issue:

https://github.com/apache/trafficserver/pull/767
  
:+1:


> 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 *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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


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

2016-06-29 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on TS-4605:


Github user atsci commented on the issue:

https://github.com/apache/trafficserver/pull/767
  
Linux build *successful*! See 
https://ci.trafficserver.apache.org/job/Github-Linux/278/ for details.
 



> 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 *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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


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

2016-06-29 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on TS-4605:


Github user atsci commented on the issue:

https://github.com/apache/trafficserver/pull/767
  
FreeBSD build *successful*! See 
https://ci.trafficserver.apache.org/job/Github-FreeBSD/382/ for details.
 



> 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 *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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


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

2016-06-29 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on TS-4605:


GitHub user masaori335 opened a pull request:

https://github.com/apache/trafficserver/pull/767

TS-4605: fix Coverity issue 1357058



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/masaori335/trafficserver ts-4605

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/trafficserver/pull/767.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #767


commit e1a37058fc14646f517c304b6d277c788a9c0462
Author: Masaori Koshiba 
Date:   2016-06-29T05:08:41Z

TS-4605: fix Coverity issue 1357058




> 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 *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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


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

2016-06-28 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-4605:
---

[~masaori] Can you take a look at this please?

> 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
>
> {code}
> ** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 
> *** CID 1357058:  Uninitialized members  (UNINIT_CTOR)
> /lib/ts/PriorityQueue.h: 32 in PriorityQueueEntry *>::PriorityQueueEntry()()
> 26 
> 27 #include "ts/ink_assert.h"
> 28 #include "ts/Vec.h"
> 29 
> 30 template  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  struct PriorityQueueLess {
> {code}



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