Fossil SCM
fixed a type conversion error caused by last round of refactoring.
Commit
f56681147746312932237944d2f8a64440584a5d
Parent
6e18fc2ecc05830…
1 file changed
+1
-1
+1
-1
| --- src/json_artifact.c | ||
| +++ src/json_artifact.c | ||
| @@ -308,11 +308,11 @@ | ||
| 308 | 308 | checkin = cson_value_get_object(checkinV); |
| 309 | 309 | cson_object_set_s(checkin, tagKey, json_tags_for_rid(rid,0)); |
| 310 | 310 | cson_array_append( checkin_arr, checkinV ); |
| 311 | 311 | } |
| 312 | 312 | #else |
| 313 | - json_stmt_to_array_of_obj( &q, cson_array_value(checkin_arr) ); | |
| 313 | + json_stmt_to_array_of_obj( &q, checkin_arr ); | |
| 314 | 314 | #endif |
| 315 | 315 | db_finalize(&q); |
| 316 | 316 | return payV; |
| 317 | 317 | } |
| 318 | 318 | |
| 319 | 319 |
| --- src/json_artifact.c | |
| +++ src/json_artifact.c | |
| @@ -308,11 +308,11 @@ | |
| 308 | checkin = cson_value_get_object(checkinV); |
| 309 | cson_object_set_s(checkin, tagKey, json_tags_for_rid(rid,0)); |
| 310 | cson_array_append( checkin_arr, checkinV ); |
| 311 | } |
| 312 | #else |
| 313 | json_stmt_to_array_of_obj( &q, cson_array_value(checkin_arr) ); |
| 314 | #endif |
| 315 | db_finalize(&q); |
| 316 | return payV; |
| 317 | } |
| 318 | |
| 319 |
| --- src/json_artifact.c | |
| +++ src/json_artifact.c | |
| @@ -308,11 +308,11 @@ | |
| 308 | checkin = cson_value_get_object(checkinV); |
| 309 | cson_object_set_s(checkin, tagKey, json_tags_for_rid(rid,0)); |
| 310 | cson_array_append( checkin_arr, checkinV ); |
| 311 | } |
| 312 | #else |
| 313 | json_stmt_to_array_of_obj( &q, checkin_arr ); |
| 314 | #endif |
| 315 | db_finalize(&q); |
| 316 | return payV; |
| 317 | } |
| 318 | |
| 319 |