<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp.orig
+++ src/3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp
@@ -74,7 +74,7 @@
     RefPtr&lt;HTMLImageElement&gt; image = adoptRef(new HTMLImageElement(imgTag, document));
     if (optionalWidth)
         image-&gt;setWidth(*optionalWidth);
-    if (optionalHeight &gt; 0)
+    if (optionalHeight)
         image-&gt;setHeight(*optionalHeight);
     return image.release();
 }
--- tools/linguist/linguist/messagemodel.cpp.orig
+++ tools/linguist/linguist/messagemodel.cpp
@@ -183,7 +183,7 @@
         if (ContextItem *c = one-&gt;findContext(oc-&gt;context())) {
             for (int j = 0; j &lt; oc-&gt;messageCount(); ++j) {
                 MessageItem *m = oc-&gt;messageItem(j);
-                if (c-&gt;findMessage(m-&gt;text(), m-&gt;comment()) &gt;= 0)
+                if (c-&gt;findMessage(m-&gt;text(), m-&gt;comment()))
                     ++inBoth;
             }
         }
</pre></body></html>