** Free all elements of the linked list starting at pConstraint. */
| 9410 | ** Free all elements of the linked list starting at pConstraint. |
| 9411 | */ |
| 9412 | static void idxConstraintFree(IdxConstraint *pConstraint){ |
| 9413 | IdxConstraint *pNext; |
| 9414 | IdxConstraint *p; |
| 9415 | |
| 9416 | for(p=pConstraint; p; p=pNext){ |
| 9417 | pNext = p->pNext; |
| 9418 | sqlite3_free(p); |
| 9419 | } |
| 9420 | } |
| 9421 | |
| 9422 | /* |
| 9423 | ** Free all elements of the linked list starting from pScan up until pLast |