Details
Description
When reading the driver version by cifXGetDriverVersion(), the version string does not contain a terminating 0 character.
The function uses strlen() to determine the copy length of the string, but the function returns the length without the terminating 0 character and this length is used in strncpy() resulting in the missing
terminating 0 character.