** Destroy a Decimal object */
| 4555 | ** Destroy a Decimal object |
| 4556 | */ |
| 4557 | static void decimal_free(Decimal *p){ |
| 4558 | if( p ){ |
| 4559 | decimal_clear(p); |
| 4560 | sqlite3_free(p); |
| 4561 | } |
| 4562 | } |
| 4563 | |
| 4564 | /* |
| 4565 | ** Allocate a new Decimal object. Initialize it to the number given |
no test coverage detected