File difference report generated by CSDiff by ComponentSoftware on 26/12/2010 09:40

Base file: D:\dev2\BugList\200909\psd\libpsd-0.9\stream.c
Compared file: D:\dev2\BugList\200909\psd\libpsd\stream.c

30c30
< 
---
> #include <stdio.h>
87c87
< 		read += psd_fread(buffer, length, context->file);
---
> 		read += psd_fread(context->file, buffer, 1, length);
94c94
< 			stream->read_in_length = psd_fread(stream->buffer, PSD_STREAM_MAX_READ_LENGTH, context->file);
---
> 			stream->read_in_length = psd_fread(context->file, stream->buffer, 1, PSD_STREAM_MAX_READ_LENGTH);
146c146
< 		psd_fseek(context->file, length);
---
> 		psd_fseek(context->file, length, SEEK_CUR);
154c154
< 			stream->read_in_length = psd_fread(stream->buffer, PSD_STREAM_MAX_READ_LENGTH, context->file);
---
> 			stream->read_in_length = psd_fread(context->file, stream->buffer, 1, PSD_STREAM_MAX_READ_LENGTH);
375a376
> 	/* [DP] the application is responsible for this
380a382
> 	*/


<---------------------  End of report  --------------------->

