Skip to content

Commit 1bd1c53

Browse files
author
camilo
committed
fix check on interp1
1 parent dd86682 commit 1bd1c53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qinterp1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ int qInterp1_Setup( qInterp1_t * const i,
7676
{
7777
int retVal = 0;
7878

79-
if ( ( NULL != i ) && ( sizeTable > 2U ) && ( NULL != xTable ) && ( NULL != xTable ) ) {
79+
if ( ( NULL != i ) && ( sizeTable > 2U ) && ( NULL != xTable ) && ( NULL != yTable ) ) {
8080
i->xData = xTable;
8181
i->yData = yTable;
8282
i->dataSize = sizeTable;

0 commit comments

Comments
 (0)