In the file ecotax.c, in the function readnext_ecotaxon, line 166, the taxon name is not flagged with a 0 at the end after using strncpy.
This line should be added:
taxon->name[raw->name_length] = 0;
In the file ``ecotax.c``, in the function ``readnext_ecotaxon``, line 166, the taxon name is not flagged with a 0 at the end after using ``strncpy``.
This line should be added:
```taxon->name[raw->name_length] = 0;```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
In the file
ecotax.c, in the functionreadnext_ecotaxon, line 166, the taxon name is not flagged with a 0 at the end after usingstrncpy.This line should be added:
taxon->name[raw->name_length] = 0;closed via commit
495da2165c