[pcre-dev] Reliance on undefined shift overflow
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Αυτό το μήνυμα είναι μέρος του ακόλουθου νήματος:
το πλήρες δέντρο νημάτων ταξινομημένο κατά ημερομηνία
ph10 στο 2016-02-28 15:07
2016-02-28 15:07
Συντάκτης:
Michael McConville
Ημερομηνία:
2016-02-27 00:24
2016-02-27 00:24
-000
UTC
Προς:
pcre-dev
Αντικείμενο:
[pcre-dev] Reliance on undefined shift overflow
The expression (1 << (c&7)) is used as a boolean in:
pcre, pcre_study:1374 pcre2, src/pcre2_study.c:1455
This is technically a constant true value, as the only potential
outcomes are:
* no overflow
* undefined overflow
Nonetheless, considering the '&7' part, overflow is impossible.
Thanks for your time,
Michael