<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - [Cairo] Conditional jump or move depends on uninitialised value(s)"
   href="https://bugs.webkit.org/show_bug.cgi?id=166058#c5">Comment # 5</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - [Cairo] Conditional jump or move depends on uninitialised value(s)"
   href="https://bugs.webkit.org/show_bug.cgi?id=166058">bug 166058</a>
              from <span class="vcard"><a class="email" href="mailto:sabouhallawa&#64;apple.com" title="Said Abou-Hallawa &lt;sabouhallawa&#64;apple.com&gt;"> <span class="fn">Said Abou-Hallawa</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=297518&amp;action=diff" name="attach_297518" title="Patch">attachment 297518</a> <a href="attachment.cgi?id=297518&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=297518&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=297518&amp;action=review</a>

<span class="quote">&gt; Source/WebCore/platform/graphics/cairo/FontCairo.cpp:246
&gt;      cairo_glyph_t cairoGlyph;
&gt;      cairoGlyph.index = m_glyphBuffer.glyphAt(m_index);
&gt; +    cairoGlyph.x = cairoGlyph.y = 0;</span >

These could have been written like this:

cairo_glyph_t cairoGlyph = { m_glyphBuffer.glyphAt(m_index), 0, 0 };</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>