[Linux_FileSystemParameter.c:102]: (warning) scanf without field width limits can crash with huge input data.
while (tmpfile && fscanf(tmpfile, "%s\n", filename) != EOF) {
Maybe better code
while (tmpfile && fscanf(tmpfile, "%1024s\n", filename) != EOF) {
Package cmpi-params.