search for: retbuf

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

Did you mean: refbuf
2009 Feb 04
12
Detecting a programm runs using Wine
Is there absolutelu no (unofficial) way to detect whether a programm is running using Wine? In this way a programm could decide to use other routines for those features that do not work fine using Wine.
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...+ if (zio_read_data(bp, buf, stack) != 0) { grub_printf("zio_read_data failed\n"); return (ERR_FSYS_CORRUPT); } @@ -409,8 +424,13 @@ zio_read(blkptr_t *bp, void *buf, char * return (ERR_FSYS_CORRUPT); } - if (comp != ZIO_COMPRESS_OFF) - decomp_table[comp].decomp_func(buf, retbuf, psize, lsize); + if (comp != ZIO_COMPRESS_OFF) { + if (decomp_table[comp].decomp_func(buf, retbuf, psize, + lsize) != 0) { + grub_printf("zio_read decompression failed\n"); + return (ERR_FSYS_CORRUPT); + } + } return (0); } @@ -446,7 +466,7 @@ dmu_read(dnode_phys_t *dn, u...