There's one clang analyzer warning on S3_0 in gtk2-client only (not other gtk-clients).
It assumes that f in 'fi' in load_default_files() can be NULL. Looks like false positive to me - likely caused by the fact that 'num_default_files' is not a local variable, and the analyzer is worried about it changing outside the function.
There's one clang analyzer warning on S3_0 in gtk2-client only (not other gtk-clients).
It assumes that f in 'fi' in load_default_files() can be NULL. Looks like false positive to me - likely caused by the fact that 'num_default_files' is not a local variable, and the analyzer is worried about it changing outside the function.