remove initializers for decoded aux/dyn arrays in dynamic linker
authorRich Felker <dalias@aerifal.cx>
Tue, 14 Apr 2015 02:38:18 +0000 (22:38 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 14 Apr 2015 02:38:18 +0000 (22:38 -0400)
commitf4f9562cc963181ca0ea04fbe6d31f4ca14a5d8c
tree8dc04782f4be80d2b1e289cc07817be187123871
parent1ef849c6ec6a4e30badc844371cdf1b9eedfba57
remove initializers for decoded aux/dyn arrays in dynamic linker

the zero initialization is redundant since decode_vec does its own
clearing, and it increases the risk that buggy compilers will generate
calls to memset. as long as symbols are bound at ld time, such a call
will not break anything, but it may be desirable to turn off ld-time
binding in the future.
src/ldso/dynlink.c