# HG changeset patch # User ulion # Date 1198295114 0 # Node ID 3086b6d39052a349e916658ade7767eebe58f3ef # Parent 133905f56a897ce6176465afda5bcc5c42f72e5a Move two variable to the scope where they are indeed used. diff -r 133905f56a89 -r 3086b6d39052 m_property.c --- a/m_property.c Fri Dec 21 11:56:18 2007 +0000 +++ b/m_property.c Sat Dec 22 03:45:14 2007 +0000 @@ -144,10 +144,10 @@ l = 0; str = e+1; } else if(str[0] == '?' && str[1] == '(' && (e = strchr(str+2,':'))) { - int pl = e-str-2; - char pname[pl+1]; lvl++; if(!skip) { + int pl = e-str-2; + char pname[pl+1]; memcpy(pname,str+2,pl); pname[pl] = 0; if(m_property_do(prop_list,pname,M_PROPERTY_GET,NULL,ctx) < 0)