Title: [159050] trunk/Source/WebCore
Revision
159050
Author
[email protected]
Date
2013-11-11 09:28:13 -0800 (Mon, 11 Nov 2013)

Log Message

URTBF after r159027 to make Apple Windows build happy.

* platform/graphics/cg/ImageSourceCG.cpp:
(WebCore::sharedBufferGetBytesAtPosition):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (159049 => 159050)


--- trunk/Source/WebCore/ChangeLog	2013-11-11 10:33:12 UTC (rev 159049)
+++ trunk/Source/WebCore/ChangeLog	2013-11-11 17:28:13 UTC (rev 159050)
@@ -1,3 +1,10 @@
+2013-11-11  Csaba Osztrogonác  <[email protected]>
+
+        URTBF after r159027 to make Apple Windows build happy.
+
+        * platform/graphics/cg/ImageSourceCG.cpp:
+        (WebCore::sharedBufferGetBytesAtPosition):
+
 2013-11-11  Andreas Kling  <[email protected]>
 
         Kill InlineFlowBox::rendererLineBoxes().

Modified: trunk/Source/WebCore/platform/graphics/cg/ImageSourceCG.cpp (159049 => 159050)


--- trunk/Source/WebCore/platform/graphics/cg/ImageSourceCG.cpp	2013-11-11 10:33:12 UTC (rev 159049)
+++ trunk/Source/WebCore/platform/graphics/cg/ImageSourceCG.cpp	2013-11-11 17:28:13 UTC (rev 159050)
@@ -55,7 +55,7 @@
         return 0;
 
     const char* source = sharedBuffer->data() + position;
-    size_t amount = min<size_t>(count, sourceSize - position);
+    size_t amount = std::min<size_t>(count, sourceSize - position);
     memcpy(buffer, source, amount);
     return amount;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to