Skip to content

Commit

Permalink
fix use before set error
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Aug 3, 2011
1 parent c39217e commit d9282ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/cgelem.c
Expand Up @@ -784,7 +784,7 @@ STATIC elem * eladd(elem *e)
|| e1->Eoper == OPstring
)
{
e1->EV.sp.Voffset += e2->EV.Vuns;
e1->EV.sp.Voffset += e2->EV.Vpointer;
e = el_selecte1(e);
goto ret;
}
Expand All @@ -799,7 +799,7 @@ STATIC elem * eladd(elem *e)
|| e2->Eoper == OPstring
)
{
e2->EV.sp.Voffset += e1->EV.Vuns;
e2->EV.sp.Voffset += e1->EV.Vpointer;
e = el_selecte2(e);
goto ret;
}
Expand Down

0 comments on commit d9282ae

Please sign in to comment.