Skip to content
Snippets Groups Projects
Commit f0dc3b16 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

ByteStreamData: Fix gcc11 warnings.

Don't try to dereference a null pointer, even in code that is not executed.
parent 285addf8
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
...@@ -11,12 +11,10 @@ ...@@ -11,12 +11,10 @@
namespace ByteStreamDataTest { namespace ByteStreamDataTest {
void ROBDataT() { void ROBDataT(OFFLINE_FRAGMENTS_NAMESPACE::ROBFragment* robFrag) {
typedef OFFLINE_FRAGMENTS_NAMESPACE::ROBFragment ROBF;
typedef ROBData::iterator IT; typedef ROBData::iterator IT;
ROBF* robFrag = 0;
ROBData* robData = new ROBData(robFrag); ROBData* robData = new ROBData(robFrag);
ROBData robData2 = *robData; ROBData robData2 = *robData;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment