Home
last modified time | relevance | path

Searched refs:compression_method (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A D18-cve-2014-9913-unzip-buffer-overflow.patch15 G.crec.compression_method == ENHDEFLATED) {
18 - sprintf(&methbuf[4], "%03u", G.crec.compression_method);
26 + if (G.crec.compression_method <= 999) {
27 + sprintf( &methbuf[ 4], "%03u", G.crec.compression_method);
29 + sprintf( &methbuf[ 3], "%04X", G.crec.compression_method);
H A D19-cve-2016-9844-zipinfo-buffer-overflow.patch17 - sprintf(&methbuf[1], "%03u", G.crec.compression_method);
25 + if (G.crec.compression_method <= 999) {
26 + sprintf( &methbuf[ 1], "%03u", G.crec.compression_method);
28 + sprintf( &methbuf[ 0], "%04X", G.crec.compression_method);
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-image/
H A D0001-png-img-Fix-prototypes-of-callbacks.patch26 …ight, int *bit_depth, int *color_type, int *interlace_method, int *compression_method, int *filter…
32 …ight, int *bit_depth, int *color_type, int *interlace_method, int *compression_method, int *filter…
/openbmc/openbmc/poky/meta/classes/
H A Darchiver.bbclass419 compression_method = d.getVarFlag('ARCHIVER_MODE', 'compression')
420 if compression_method == "xz":
423 elif compression_method == "gz":
425 elif compression_method == "bz2":
428 bb.fatal("Unsupported compression_method: %s" % compression_method)
432 filename = '%s-%s.tar.%s' % (d.getVar('PF'), suffix, compression_method)
434 filename = '%s.tar.%s' % (d.getVar('PF'), compression_method)
/openbmc/linux/drivers/gpu/drm/i915/gvt/
H A Dopregion.c80 u8 compression_method:1; /* 198 */ member