| 19 | |
| 20 | |
| 21 | void nvparse_errors::reset() |
| 22 | { |
| 23 | for(int i=0; i < num_errors; i++) |
| 24 | free(elist[i]);//FIXME detail_nmap something is writing 0x2 to elist[1] blah! |
| 25 | for(int j=0; j <= NVPARSE_MAX_ERRORS; j++) |
| 26 | elist[j] = 0; |
| 27 | num_errors = 0; |
| 28 | } |
| 29 | |
| 30 | void nvparse_errors::set(const char * e) |
| 31 | { |
no outgoing calls
no test coverage detected