Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 337329 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/bltin/printf.c (-12 / +4 lines)
Lines 247-264 conv_escape_str(char *str) Link Here
247
		 * They start with a \0, and are followed by 0, 1, 2, 
247
		 * They start with a \0, and are followed by 0, 1, 2, 
248
		 * or 3 octal digits. 
248
		 * or 3 octal digits. 
249
		 */
249
		 */
250
		if (ch == '0') {
250
		if (ch >= '1' && ch <= '9') {
251
			unsigned char i;
251
			/* Filter \1...\9; let \0 fall to conv_escape(). */
252
			i = 3;
252
			ch = '\\';
253
			ch = 0;
253
			--str;
254
			do {
255
				unsigned k = octtobin(*str);
256
				if (k > 7)
257
					break;
258
				str++;
259
				ch <<= 3;
260
				ch += k;
261
			} while (--i);
262
			continue;
254
			continue;
263
		}
255
		}
264
256

Return to bug 337329