pgrep: usage error should exit with 2 #413383
vmstat: use EXIT_FAILURE -- thanks Yoshio Nakamura #425492
sysctl: fix crash -- thanks Steinar Gunderson #423704
+watch: tolerate umlauts #207103
procps-3.2.6 --> procps-3.2.7
Tolerate stderr. #420377 #155227 #225549
+Tolerate VT100 line-drawing characters. Maybe translate them.
+
---------------------- w --------------------------
The LOGIN@ column sometimes has a space in it. This makes correct
while ((lin_end = strchr(glob, '\n'))) {
/* create a local copy we can extend and otherwise abuse */
- memcpy(lin, glob, (unsigned)(lin_end - glob)); FIXME -- buffer overflow
+ size_t amt = lin_end - glob;
+ if(amt > sizeof lin - 1)
+ amt = sizeof lin - 1; // shit happens
+ memcpy(lin, glob, amt);
/* zero terminate this part and prepare to parse substrings */
- lin[lin_end - glob] = '\0';
+ lin[amt] = '\0';
room = Screen_cols;
sub_beg = sub_end = lin;
*(rp = row) = '\0';
cap = Curwin->captab[(int)*sub_end];
*sub_end = '\0';
snprintf(tmp, sizeof(tmp), "%s%.*s%s", cap, room, sub_beg, Caps_off);
+ amt = strlen(tmp);
+ if(rp - tmp + amt + 1 > sizeof tmp)
+ goto overflow; // shit happens
rp = scat(rp, tmp);
room -= (sub_end - sub_beg);
sub_beg = ++sub_end;
}
if (unlikely(0 >= room)) break; /* skip substrings that won't fit */
}
-
+overflow:
if (interact) PUTT("%s%s\n", row, Cap_clr_eol);
else PUFF("%s%s\n", row, Cap_clr_eol);
glob = ++lin_end; /* point to next line (maybe) */
}
move(y, x);
if (option_differences) {
- int oldch = inch();
+ chtype oldch = inch();
char oldc = oldch & A_CHARTEXT;
attr = !first_screen
- && (c != oldc
+ && ((char)c != oldc
||
(option_differences_cumulative
&& (oldch & A_ATTRIBUTES)));