cairocanvas: initialize vars

git-svn-id: trunk@42586 -
This commit is contained in:
mattias 2013-09-04 09:18:32 +00:00
parent f3f8559736
commit ac9e433e89

View File

@ -178,7 +178,7 @@ function WriteToStream(closure: Pointer; data: PByte; length: LongWord): cairo_s
var
Stream: TStream absolute closure;
begin
if Stream.Write(data^, Length) = Length then
if Stream.Write(data^, Length) = int64(Length) then
result := CAIRO_STATUS_SUCCESS
else
result := CAIRO_STATUS_WRITE_ERROR;