Missing line probably source of bugs #1
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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