{"body":"Description: Avoid crashing if width or height are NaNs.\n This is a temporary workaround that avoid a crash if width or height are NaNs.\n The true fix would be to avoid width and height to get NaN values.\nOrigin: ubuntu\nBug-Ubuntu: https://launchpad.net/bugs/1714542\nBug: https://bugzilla.gnome.org/show_bug.cgi?id=788316\n\n--- a/src/st/st-theme-node-drawing.c\n+++ b/src/st/st-theme-node-drawing.c\n@@ -2505,7 +2505,7 @@\n   allocation.x2 = width;\n   allocation.y2 = height;\n \n-  if (width <= 0 || height <= 0)\n+  if (width <= 0 || height <= 0 || isnan (width) || isnan (height))\n     return;\n \n   /* Check whether we need to recreate the textures of the paint\n","name":"","extension":"txt","url":"https://www.irccloud.com/pastebin/bWsqLRmd","modified":1507552044,"id":"bWsqLRmd","size":658,"lines":18,"own_paste":false,"theme":"","date":1507552044}