Mikhail Gusarov wrote: > Signed-off-by: Mikhail Gusarov <[email protected]> > --- > os/log.c | 5 +---- > 1 files changed, 1 insertions(+), 4 deletions(-) > > diff --git a/os/log.c b/os/log.c > index 3435da6..94f76aa 100644 > --- a/os/log.c > +++ b/os/log.c > @@ -305,10 +305,7 @@ LogVWrite(int verb, const char *f, va_list args) > if (len > bufferUnused) { > bufferSize += 1024; > bufferUnused += 1024; > - if (saveBuffer) > - saveBuffer = realloc(saveBuffer, bufferSize); > - else > - saveBuffer = malloc(bufferSize); > + saveBuffer = realloc(saveBuffer, bufferSize); > if (!saveBuffer) > FatalError("realloc() failed while saving log messages\n"); > }
The spacing doesn't line up, but the code looks correct, so if you can make the new saveBuffer line match the indentation of the lines before & after it: Reviewed-by: Alan Coopersmith <[email protected]> -- -Alan Coopersmith- [email protected] Oracle Solaris Platform Engineering: X Window System _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
