|
|
@ -1,5 +1,5 @@ |
|
|
|
{%- if issues -%} |
|
|
|
{% if issues %} |
|
|
|
{% for key, issue in issues.items() -%} |
|
|
|
{% for key, issue in issues.items() %} |
|
|
|
==== {{ issue.title }} ==== |
|
|
|
==== {{ issue.title }} ==== |
|
|
|
Type: {{ issue.type }} |
|
|
|
Type: {{ issue.type }} |
|
|
|
Contract: {{ issue.contract | default("Unknown") }} |
|
|
|
Contract: {{ issue.contract | default("Unknown") }} |
|
|
@ -7,22 +7,23 @@ Function name: {{ issue.function }} |
|
|
|
PC address: {{ issue.address }} |
|
|
|
PC address: {{ issue.address }} |
|
|
|
{{ issue.description }} |
|
|
|
{{ issue.description }} |
|
|
|
-------------------- |
|
|
|
-------------------- |
|
|
|
{% if issue.filename and issue.lineno -%} |
|
|
|
{% if issue.filename and issue.lineno %} |
|
|
|
In file: {{ issue.filename }}:{{ issue.lineno }} |
|
|
|
In file: {{ issue.filename }}:{{ issue.lineno }} |
|
|
|
{%- endif %} |
|
|
|
{% endif %} |
|
|
|
{%- if issue.code %} |
|
|
|
{% if issue.code %} |
|
|
|
|
|
|
|
|
|
|
|
{{ issue.code }} |
|
|
|
{{ issue.code }} |
|
|
|
|
|
|
|
|
|
|
|
-------------------- |
|
|
|
-------------------- |
|
|
|
{% endif -%} |
|
|
|
{% endif %} |
|
|
|
{% if verbose and issue.debug -%} |
|
|
|
{% if verbose and issue.debug %} |
|
|
|
-------------------- |
|
|
|
-------------------- |
|
|
|
DEBUGGING INFORMATION: |
|
|
|
DEBUGGING INFORMATION: |
|
|
|
|
|
|
|
|
|
|
|
{{ issue.debug }} |
|
|
|
{{ issue.debug }} |
|
|
|
{%- endif %} |
|
|
|
{% endif %} |
|
|
|
{% endfor -%} |
|
|
|
|
|
|
|
{%- else -%} |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
{% else %} |
|
|
|
The analysis was completed successfully. No issues were detected. |
|
|
|
The analysis was completed successfully. No issues were detected. |
|
|
|
{%- endif -%} |
|
|
|
{% endif %} |