Staging: bcm: dereferencing before checking
I moved the check to see if "Adapter" was null in front of the dereference. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
055a1eda5f
commit
acedadfae5
1 changed files with 5 additions and 6 deletions
|
@ -1943,15 +1943,14 @@ ULONG SetUpTargetDsxBuffers(PMINI_ADAPTER Adapter)
|
|||
ULONG ulIndex=0;
|
||||
int Status;
|
||||
|
||||
if (!Adapter) {
|
||||
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "Adapter was NULL!!!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if(Adapter->astTargetDsxBuffer[0].ulTargetDsxBuffer)
|
||||
return 1;
|
||||
|
||||
if(NULL == Adapter)
|
||||
{
|
||||
BCM_DEBUG_PRINT( Adapter,DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "Adapter was NULL!!!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
BCM_DEBUG_PRINT( Adapter,DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "Size of Each DSX Buffer(Also size of ServiceFlowParamSI): %zx ",sizeof(stServiceFlowParamSI));
|
||||
BCM_DEBUG_PRINT( Adapter,DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "Reading DSX buffer From Target location %x ",DSX_MESSAGE_EXCHANGE_BUFFER);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue