Rev 4354 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4354 | Rev 4372 | ||
|---|---|---|---|
| Line 169... | Line 169... | ||
| 169 | /* Empty the queue so that we leave it in a clean state */ |
169 | /* Empty the queue so that we leave it in a clean state */ |
| 170 | while (!list_empty(&queue_head)) |
170 | while (!list_empty(&queue_head)) |
| 171 | list_remove(queue_head.next); |
171 | list_remove(queue_head.next); |
| 172 | 172 | ||
| 173 | if (!sym) { |
173 | if (!sym) { |
| 174 | printf("Error, symbol '%s' not found anywhere\n", name); |
- | |
| 175 | exit(1); |
- | |
| 176 | return NULL; /* Not found */ |
174 | return NULL; /* Not found */ |
| 177 | } |
175 | } |
| 178 | 176 | ||
| 179 | return sym; /* Symbol found */ |
177 | return sym; /* Symbol found */ |
| 180 | } |
178 | } |