Ticket #1718: B_letter_fix.patch
File B_letter_fix.patch, 505 bytes (added by slavazanko, 15 years ago) |
---|
-
sandbox/pavlinux/mc/src/util.c
1194 1194 for (w = s, r = s; *r; ) { 1195 1195 if (*r == ESC_CHAR) { 1196 1196 /* Skip the control sequence's arguments */ ; 1197 if (*(++r) == '[' ) {1197 if (*(++r) == '[' || *r == '(') { 1198 1198 /* strchr() matches trailing binary 0 */ 1199 1199 while (*(++r) && strchr ("0123456789;?", *r)); 1200 1200 }