1
1

Safety net for the sscanf function. Without the \0 at the end of the

buffer, we can read outside the allocated memory.

This commit was SVN r19258.
Этот коммит содержится в:
George Bosilca 2008-08-12 16:59:27 +00:00
родитель f030497072
Коммит 5a885a9150

Просмотреть файл

@ -172,7 +172,7 @@ static void clear_cache(void)
static void load_cache(const char *sysfs_mount)
{
int i, j, k, invalid_entry, fd;
char path[PATH_MAX], buf[8];
char path[PATH_MAX], buf[8] = "\0\0\0\0\0\0\0\0";
PLPA_NAME(cpu_set_t) *cores_on_sockets;
int found;