fix coverity reports

pull/13112/head
Alexander Alekhin 7 years ago
parent 56eebb926d
commit 801c943009
  1. 2
      modules/dnn/src/dnn.cpp
  2. 5
      modules/videoio/src/cap_v4l.cpp

@ -1801,7 +1801,7 @@ struct Net::Impl
nextEltwiseLayer = nextData->layerInstance.dynamicCast<EltwiseLayer>(); nextEltwiseLayer = nextData->layerInstance.dynamicCast<EltwiseLayer>();
if( !nextEltwiseLayer.empty() && pinsToKeep.count(lpNext) == 0 && if( !nextEltwiseLayer.empty() && pinsToKeep.count(lpNext) == 0 &&
nextData->inputBlobsId.size() == 2 ) nextData && nextData->inputBlobsId.size() == 2 )
{ {
LayerData *eltwiseData = nextData; LayerData *eltwiseData = nextData;

@ -348,7 +348,9 @@ struct CvCaptureCAM_V4L CV_FINAL : public CvCapture
/*********************** Implementations ***************************************/ /*********************** Implementations ***************************************/
CvCaptureCAM_V4L::CvCaptureCAM_V4L() : deviceHandle(-1), bufferIndex(-1) CvCaptureCAM_V4L::CvCaptureCAM_V4L() : deviceHandle(-1), bufferIndex(-1)
{} {
memset(&timestamp, 0, sizeof(timestamp));
}
CvCaptureCAM_V4L::~CvCaptureCAM_V4L() { CvCaptureCAM_V4L::~CvCaptureCAM_V4L() {
streaming(false); streaming(false);
@ -1739,7 +1741,6 @@ double CvCaptureCAM_V4L::getProperty(int property_id) const
return value; return value;
} }
} }
return -1.0;
} }
bool CvCaptureCAM_V4L::icvSetFrameSize(int _width, int _height) bool CvCaptureCAM_V4L::icvSetFrameSize(int _width, int _height)

Loading…
Cancel
Save