** Free all elements of the linked list starting at pConstraint. */
| 11312 | ** Free all elements of the linked list starting at pConstraint. |
| 11313 | */ |
| 11314 | static void idxConstraintFree(IdxConstraint *pConstraint){ |
| 11315 | IdxConstraint *pNext; |
| 11316 | IdxConstraint *p; |
| 11317 | |
| 11318 | for(p=pConstraint; p; p=pNext){ |
| 11319 | pNext = p->pNext; |
| 11320 | sqlite3_free(p); |
| 11321 | } |
| 11322 | } |
| 11323 | |
| 11324 | /* |
| 11325 | ** Free all elements of the linked list starting from pScan up until pLast |