Rev 4267 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4267 | Rev 4273 | ||
---|---|---|---|
Line 118... | Line 118... | ||
118 | 118 | ||
119 | count_t pos; |
119 | count_t pos; |
120 | for (pos = *startpos; symbol_table[pos].address_le; pos++) { |
120 | for (pos = *startpos; symbol_table[pos].address_le; pos++) { |
121 | const char *curname = symbol_table[pos].symbol_name; |
121 | const char *curname = symbol_table[pos].symbol_name; |
122 | 122 | ||
123 | /* Find a ':' in name */ |
123 | /* Find a ':' in curname */ |
124 | const char *colon = str_chr(curname, ':'); |
124 | const char *colon = str_chr(curname, ':'); |
125 | if (colon == NULL) |
125 | if (colon == NULL) |
126 | continue; |
126 | continue; |
127 | 127 | ||
128 | if (str_length(curname) < namelen) |
128 | if (str_length(curname) < namelen) |