search for: rep0

Displaying 2 results from an estimated 2 matches for "rep0".

Did you mean: rep
2005 Oct 05
2
output a sequence of plots
I can output two histograms of variables AXFILTERED and AZPTOP as follows: win.metafile(filename="C:/AXFILTERED.emf",pointsize=12) hist(AXFILTERED,breaks=40) dev.off() win.metafile(filename="C:/AZPTOP.emf",pointsize=12) hist(AZPTOP,breaks=40) dev.off() But, I actually have a dataframe of 120 variables that I would like histograms of. Any solutions that would save me from
2011 Nov 11
0
[PATCH 5/9] Decompressors: check for read errors in unlzma.c
...ression if the LZMA-compressed initramfs image is corrupt. Signed-off-by: Lasse Collin <lasse.collin@tukaani.org> Signed-off-by: Jan Beulich <jbeulich@suse.com> --- a/xen/common/unlzma.c +++ b/xen/common/unlzma.c @@ -625,6 +625,8 @@ STATIC int INIT unlzma(unsigned char *bu if (cst.rep0 == 0) break; } + if (rc.buffer_size <= 0) + goto exit_3; } if (posp) @@ -632,6 +634,7 @@ STATIC int INIT unlzma(unsigned char *bu if (wr.flush) wr.flush(wr.buffer, wr.buffer_pos); ret = 0; +exit_3: large_free(p); exit_2: if (!output) ____________________________...