On Wed, Mar 30, 2016 at 4:11 AM, Andy Shevchenko <[email protected]> wrote: > On Wed, 2016-03-30 at 14:07 +0300, Andy Shevchenko wrote: >> On Mon, 2016-03-28 at 14:14 -0700, Kees Cook wrote: > > >> > + res = get_cmdline(task, buffer, PAGE_SIZE - 1); >> > + buffer[res] = '\0'; >> > + >> > + /* Collapse trailing NULLs. */ >> > + for (; res > 0; res--) >> > + if (buffer[res-1] != '\0') >> > + break; >> /* buffer[res] is '\0', so, predecrement is safe here */ >> while (buffer[--res] == '\0') >> /* nothing */; >> >> ? >> > > Oops, no, the following should be better > > while (--res >= 0 && buffer[res] == '\0') ;
Sure, I'll change it. Though I'll need to adjust the next loop's use of res (since it effectively changes from "number of bytes" counter to "location of last non-null byte" (i <= res). -Kees -- Kees Cook Chrome OS & Brillo Security

