Browse Source

nrf51: remove dereference of null pointer

found by clang 3.4.

Change-Id: Id499b546f65acd7a719498bc97e33b21d1ba565a
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/2119
Tested-by: jenkins
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Reviewed-by: Andrey Smirnov <andrew.smirnov@gmail.com>
tags/v0.8.0
Spencer Oliver 10 years ago
committed by Paul Fertser
parent
commit
cf094f22ca
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/flash/nor/nrf51.c

+ 1
- 1
src/flash/nor/nrf51.c View File

@@ -629,7 +629,7 @@ static int nrf51_write_page(struct flash_bank *bank, uint32_t offset, const uint
struct flash_sector *sector = nrf51_find_sector_by_address(bank, offset); struct flash_sector *sector = nrf51_find_sector_by_address(bank, offset);


if (!sector) if (!sector)
goto error;
return ERROR_FLASH_SECTOR_INVALID;


if (sector->is_protected) if (sector->is_protected)
goto error; goto error;


Loading…
Cancel
Save