freebsd-ports/www/webkit-gtk3/files/patch-cairo
Koop Mast 1ed005506f Update the webkit-gtk2 port to 1.8.3. This should fix the
soup_session_send_request_async() error when running webkit based programs like
midori. Also add a webkit-gtk3 port.

Obtained from:	gnome team repo
2013-03-13 07:59:13 +00:00

11 lines
464 B
Text

--- Source/WebCore/platform/graphics/BitmapImage.cpp.orig 2011-01-08 16:50:57.000000000 +0000
+++ Source/WebCore/platform/graphics/BitmapImage.cpp 2011-01-11 16:36:22.000000000 +0000
@@ -207,7 +207,7 @@ bool BitmapImage::isSizeAvailable()
NativeImagePtr BitmapImage::frameAtIndex(size_t index)
{
if (index >= frameCount())
- return 0;
+ return NULL;
if (index >= m_frames.size() || !m_frames[index].m_frame)
cacheFrame(index);