# HG changeset patch # User michael # Date 1159094294 0 # Node ID 6f219b6839ba6eb96c277cedfbcef3bc0b32c618 # Parent 82ceab4ada49e109c845d639337dd7f0a0a756b8 segfault fix thanks to takis for finding the cause of this diff -r 82ceab4ada49 -r 6f219b6839ba eval.c --- a/eval.c Sat Sep 23 08:50:50 2006 +0000 +++ b/eval.c Sun Sep 24 10:38:14 2006 +0000 @@ -87,6 +87,7 @@ p->s= strchr(p->s, '('); if(p->s==NULL){ av_log(NULL, AV_LOG_ERROR, "Parser: missing ( in \"%s\"\n", next); + p->s= next; return NAN; } p->s++; // "("