aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/win
diff options
context:
space:
mode:
authorGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-08-17 14:53:54 +0000
committerGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-08-17 14:53:54 +0000
commite25c68402b38ac01dc1ae196ae8a5265b773c5f2 (patch)
tree7551d6583eb06a336bc75e988cf82ac0e4bad82b /src/utils/win
parent583a1e38503ebd57ba9bd39a3fabe89bead8e76c (diff)
Canvas to handle null layer device.
Diffstat (limited to 'src/utils/win')
-rw-r--r--src/utils/win/SkIStream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/win/SkIStream.cpp b/src/utils/win/SkIStream.cpp
index 79164e6a31..8c9e180b89 100644
--- a/src/utils/win/SkIStream.cpp
+++ b/src/utils/win/SkIStream.cpp
@@ -189,8 +189,8 @@ HRESULT STDMETHODCALLTYPE SkIStream::Seek(LARGE_INTEGER liDistanceToMove
break;
}
- if (NULL != lpNewFilePointer) {
- lpNewFilePointer->QuadPart = this->fLocation.QuadPart;
+ if (NULL != lpNewFilePointer) {
+ lpNewFilePointer->QuadPart = this->fLocation.QuadPart;
}
return hr;
}