Skip to content

Initialize OAIgraph before usage

Robert Schmidt requested to merge fix-uninitialized-var-scope into develop

Newer GCC releases warn about the scope being uninitialized:

openair1/PHY/TOOLS/nr_phy_scope.c:1076:20: error: ‘graph.text’ is used uninitialized [-Werror=uninitialized]

This is correct, as we don't initialize the scope. This commit correctly initializes the scope.

Merge request reports