oop missing a seek
This commit is contained in:
parent
632bce3c78
commit
915226db21
@ -1299,11 +1299,16 @@ static int
|
|||||||
vips2rad_put_data_block( VipsRegion *region, VipsRect *area, void *a )
|
vips2rad_put_data_block( VipsRegion *region, VipsRect *area, void *a )
|
||||||
{
|
{
|
||||||
Write *write = (Write *) a;
|
Write *write = (Write *) a;
|
||||||
size_t size;
|
|
||||||
unsigned char *buffer = vips_dbuf_get_write( &write->dbuf, &size );
|
|
||||||
|
|
||||||
|
size_t size;
|
||||||
|
unsigned char *buffer;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
/* You have to seek back after a write.
|
||||||
|
*/
|
||||||
|
buffer = vips_dbuf_get_write( &write->dbuf, &size );
|
||||||
|
vips_dbuf_seek( &write->dbuf, 0, SEEK_SET );
|
||||||
|
|
||||||
g_assert( size >= MAX_LINE );
|
g_assert( size >= MAX_LINE );
|
||||||
|
|
||||||
for( i = 0; i < area->height; i++ ) {
|
for( i = 0; i < area->height; i++ ) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user