1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): Don't

parse more than three parts of the version number.
This commit is contained in:
Ulrich Drepper
2007-09-15 22:54:33 +00:00
parent 267c54dcef
commit 3524efe0bd
2 changed files with 6 additions and 1 deletions

View File

@ -121,7 +121,7 @@ _dl_discover_osversion (void)
version <<= 8;
version |= here;
if (*cp++ != '.')
if (*cp++ != '.' || parts == 3)
/* Another part following? */
break;
}