Home
last modified time | relevance | path

Searched hist:"5 e03b81fd47d4b3ffb897a6ec79de8d4f9b17f0e" (Results 1 – 3 of 3) sorted by relevance

/freebsd/bin/sh/tests/parser/
H A Ddollar-quote13.05e03b81fd47d4b3ffb897a6ec79de8d4f9b17f0e Fri Aug 21 00:05:55 CEST 2015 Jilles Tjoelker <jilles@FreeBSD.org> sh: Avoid negative character values from $'\Uffffffff' etc.

The negative value was not expected and generated the low 8 bits as a byte,
which may be an invalid character encoding.

The final shift in creating the negative value was undefined as well.

Make the temporary variable unsigned to fix this.
H A DMakefilediff 5e03b81fd47d4b3ffb897a6ec79de8d4f9b17f0e Fri Aug 21 00:05:55 CEST 2015 Jilles Tjoelker <jilles@FreeBSD.org> sh: Avoid negative character values from $'\Uffffffff' etc.

The negative value was not expected and generated the low 8 bits as a byte,
which may be an invalid character encoding.

The final shift in creating the negative value was undefined as well.

Make the temporary variable unsigned to fix this.
/freebsd/bin/sh/
H A Dparser.cdiff 5e03b81fd47d4b3ffb897a6ec79de8d4f9b17f0e Fri Aug 21 00:05:55 CEST 2015 Jilles Tjoelker <jilles@FreeBSD.org> sh: Avoid negative character values from $'\Uffffffff' etc.

The negative value was not expected and generated the low 8 bits as a byte,
which may be an invalid character encoding.

The final shift in creating the negative value was undefined as well.

Make the temporary variable unsigned to fix this.