diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-03-02 22:41:18 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-03-02 22:41:18 -0800 |
commit | b5f2a629c2617fc08a3b6d3fcc7d40f3974c8217 (patch) | |
tree | e803040bcbd8a08275bebe2d33ce89758ae1c142 /html/054static_dispatch.cc.html | |
parent | e520e7989c207da66130b951d6268d11911b4fcc (diff) | |
download | mu-b5f2a629c2617fc08a3b6d3fcc7d40f3974c8217.tar.gz |
3752 - fix a couple of segfaults
Thanks Ella Couch for running into these.
Diffstat (limited to 'html/054static_dispatch.cc.html')
-rw-r--r-- | html/054static_dispatch.cc.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/054static_dispatch.cc.html b/html/054static_dispatch.cc.html index 8803f098..6b607ad0 100644 --- a/html/054static_dispatch.cc.html +++ b/html/054static_dispatch.cc.html @@ -378,7 +378,7 @@ if ('onhashchange' in window) { <span id="L315" class="LineNr">315 </span><span class="Delimiter">}</span> <span id="L316" class="LineNr">316 </span> <span id="L317" class="LineNr">317 </span><span class="Normal">bool</span> <a href='054static_dispatch.cc.html#L317'>types_strictly_match_except_literal_against_address_or_boolean</a><span class="Delimiter">(</span><span class="Normal">const</span> reagent& to<span class="Delimiter">,</span> <span class="Normal">const</span> reagent& from<span class="Delimiter">)</span> <span class="Delimiter">{</span> -<span id="L318" class="LineNr">318 </span> <span class="Normal">if</span> <span class="Delimiter">(</span>is_literal<span class="Delimiter">(</span>from<span class="Delimiter">)</span> && <a href='021check_instruction.cc.html#L199'>is_mu_boolean</a><span class="Delimiter">(</span>to<span class="Delimiter">))</span> +<span id="L318" class="LineNr">318 </span> <span class="Normal">if</span> <span class="Delimiter">(</span>is_literal<span class="Delimiter">(</span>from<span class="Delimiter">)</span> && <a href='021check_instruction.cc.html#L200'>is_mu_boolean</a><span class="Delimiter">(</span>to<span class="Delimiter">))</span> <span id="L319" class="LineNr">319 </span> <span class="Identifier">return</span> from<span class="Delimiter">.</span>name == <span class="Constant">"0"</span> || from<span class="Delimiter">.</span>name == <span class="Constant">"1"</span><span class="Delimiter">;</span> <span id="L320" class="LineNr">320 </span> <span class="Identifier">return</span> types_strictly_match_except_literal_zero_against_address<span class="Delimiter">(</span>to<span class="Delimiter">,</span> from<span class="Delimiter">);</span> <span id="L321" class="LineNr">321 </span><span class="Delimiter">}</span> |