Bug Summary

File:select/properties/pitch.c
Warning:line 26, column 4
Value stored to 'freq' is never read

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name pitch.c -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fcoverage-compilation-dir=/var/lib/jenkins/workspace/scan-build-libcss -resource-dir /usr/lib/llvm-14/lib/clang/14.0.6 -D _BSD_SOURCE -D _DEFAULT_SOURCE -I /var/lib/jenkins/workspace/scan-build-libcss/include/ -I /var/lib/jenkins/workspace/scan-build-libcss/src -D _ALIGNED=__attribute__((aligned)) -D STMTEXPR=1 -D DEBUG -I /var/lib/jenkins/artifacts-x86_64-linux-gnu/include -internal-isystem /usr/lib/llvm-14/lib/clang/14.0.6/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib/gcc/x86_64-linux-gnu/12/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -O0 -Wwrite-strings -Wno-error -std=c99 -fconst-strings -fdebug-compilation-dir=/var/lib/jenkins/workspace/scan-build-libcss -ferror-limit 19 -fgnuc-version=4.2.1 -analyzer-display-progress -analyzer-output=html -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /var/lib/jenkins/workspace/scan-build-libcss/clangScanBuildReports/2024-03-18-092321-257287-1 -x c src/select/properties/pitch.c
1/*
2 * This file is part of LibCSS
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
6 */
7
8#include "bytecode/bytecode.h"
9#include "bytecode/opcodes.h"
10#include "select/propset.h"
11#include "select/propget.h"
12#include "utils/utils.h"
13
14#include "select/properties/properties.h"
15#include "select/properties/helpers.h"
16
17css_error css__cascade_pitch(uint32_t opv, css_style *style,
18 css_select_state *state)
19{
20 css_fixed freq = 0;
21 uint32_t unit = UNIT_HZ;
22
23 if (hasFlagValue(opv) == false0) {
24 switch (getValue(opv)) {
25 case PITCH_FREQUENCY:
26 freq = *((css_fixed *) style->bytecode);
Value stored to 'freq' is never read
27 advance_bytecode(style, sizeof(freq));
28 unit = *((uint32_t *) style->bytecode);
29 advance_bytecode(style, sizeof(unit));
30 break;
31 case PITCH_X_LOW:
32 case PITCH_LOW:
33 case PITCH_MEDIUM:
34 case PITCH_HIGH:
35 case PITCH_X_HIGH:
36 /** \todo convert to public values */
37 break;
38 }
39 }
40
41 unit = css__to_css_unit(unit);
42
43 if (css__outranks_existing(getOpcode(opv), isImportant(opv), state,
44 getFlagValue(opv))) {
45 /** \todo pitch */
46 }
47
48 return CSS_OK;
49}
50
51css_error css__set_pitch_from_hint(const css_hint *hint,
52 css_computed_style *style)
53{
54 UNUSED(hint)((void)(hint));
55 UNUSED(style)((void)(style));
56
57 return CSS_OK;
58}
59
60css_error css__initial_pitch(css_select_state *state)
61{
62 UNUSED(state)((void)(state));
63
64 return CSS_OK;
65}
66
67css_error css__copy_pitch(
68 const css_computed_style *from,
69 css_computed_style *to)
70{
71 UNUSED(from)((void)(from));
72 UNUSED(to)((void)(to));
73
74 return CSS_OK;
75}
76
77css_error css__compose_pitch(const css_computed_style *parent,
78 const css_computed_style *child,
79 css_computed_style *result)
80{
81 UNUSED(parent)((void)(parent));
82 UNUSED(child)((void)(child));
83 UNUSED(result)((void)(result));
84
85 return CSS_OK;
86}
87