diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-09-15 22:54:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-09-15 22:54:33 +0000 |
commit | 3524efe0bd5148131e6097bf90191e1872f5c65a (patch) | |
tree | 6a121122e6954509d6ae58437844cae68a50f6bd /sysdeps | |
parent | 267c54dcef41ab0ee383b208117b35b3e9d5665c (diff) | |
download | glibc-3524efe0bd5148131e6097bf90191e1872f5c65a.zip glibc-3524efe0bd5148131e6097bf90191e1872f5c65a.tar.gz glibc-3524efe0bd5148131e6097bf90191e1872f5c65a.tar.bz2 |
* sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_discover_osversion): Don't
parse more than three parts of the version number.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/dl-osinfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/dl-osinfo.h b/sysdeps/unix/sysv/linux/dl-osinfo.h index e3c605e..082790f 100644 --- a/sysdeps/unix/sysv/linux/dl-osinfo.h +++ b/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -121,7 +121,7 @@ _dl_discover_osversion (void) version <<= 8; version |= here; - if (*cp++ != '.') + if (*cp++ != '.' || parts == 3) /* Another part following? */ break; } |