use assert instead of adding code that always runs
git-svn-id: svn://svn.berlios.de/openocd/trunk@1670 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
4f19ef3cce
commit
84dfdd4de6
|
@ -41,6 +41,7 @@
|
||||||
#ifdef HAVE_STRINGS_H
|
#ifdef HAVE_STRINGS_H
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#endif
|
#endif
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1453,11 +1454,7 @@ void jtag_set_check_value(scan_field_t *field, u8 *value, u8 *mask, struct inval
|
||||||
|
|
||||||
void jtag_check_value_mask(scan_field_t *field, u8 *value, u8 *mask)
|
void jtag_check_value_mask(scan_field_t *field, u8 *value, u8 *mask)
|
||||||
{
|
{
|
||||||
if (field->in_value==NULL)
|
assert(field->in_value != NULL);
|
||||||
{
|
|
||||||
LOG_ERROR("remember to fill in in_value for jtag_check_value_mask() to work!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (value==NULL)
|
if (value==NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue