libtcc.c (put_extern_sym2): Extend the scope of buf to match its use
commitf1703e2b2f0b032d01a35a4a2d4db927698837da
authorLee Duhem <lee.duhem@gmail.com>
Thu, 11 Dec 2014 01:46:36 +0000 (11 09:46 +0800)
committerLee Duhem <lee.duhem@gmail.com>
Thu, 11 Dec 2014 02:04:22 +0000 (11 10:04 +0800)
tree0c0d5b5787ddd6e4d10dd615968aa73ffabb86cc
parent4bf3f6c965d5b9773fa7767d583c4fd579e99f57
libtcc.c (put_extern_sym2): Extend the scope of buf to match its use

After leaving the code block that `buf' is defined, `buf' will not
exist, so `name' will point to a variable that does not exist.
libtcc.c