K 10 svn:author V 3 yar K 8 svn:date V 27 2006-11-27T17:34:40.000000Z K 7 svn:log V 354 The logic of fetchnetstat_sysctl() isn't too complex: if idx is 0, we set and use xtp; if idx is 1, we set and use xip; the other cases are impossible. However, GCC cannot see that xip and xtp are always initialized before use because they are initialized and used in different if/else blocks. So setting them to NULL at the very beginning won't hurt. END