commit
da25462be7
|
@ -1180,7 +1180,7 @@ bool fstBoundWithDataIsEmpty(FstBoundWithData *bound) {
|
||||||
|
|
||||||
|
|
||||||
bool fstBoundWithDataIsIncluded(FstBoundWithData *bound) {
|
bool fstBoundWithDataIsIncluded(FstBoundWithData *bound) {
|
||||||
return bound->type == Included ? true : false;
|
return bound->type == Excluded? false : true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void fstBoundDestroy(FstBoundWithData *bound) {
|
void fstBoundDestroy(FstBoundWithData *bound) {
|
||||||
|
|
|
@ -145,7 +145,8 @@ AutomationCtx* automCtxCreate(void *data,AutomationType atype) {
|
||||||
|
|
||||||
StartWithStateValue *sv = NULL;
|
StartWithStateValue *sv = NULL;
|
||||||
if (atype == AUTOMATION_PREFIX) {
|
if (atype == AUTOMATION_PREFIX) {
|
||||||
sv = startWithStateValueCreate(Running, FST_INT, 0);
|
int val = 0;
|
||||||
|
sv = startWithStateValueCreate(Running, FST_INT, &val);
|
||||||
ctx->stdata = (void *)sv;
|
ctx->stdata = (void *)sv;
|
||||||
} else if (atype == AUTMMATION_MATCH) {
|
} else if (atype == AUTMMATION_MATCH) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue