diff --git a/src/detection/cpu/cpu_linux.c b/src/detection/cpu/cpu_linux.c index 227af12bb..fbc5a9749 100644 --- a/src/detection/cpu/cpu_linux.c +++ b/src/detection/cpu/cpu_linux.c @@ -209,7 +209,10 @@ const char* ffDetectCPUImpl(const FFCPUOptions* options, FFCPUResult* cpu) if (*pstart == '-') { - ffStrbufAppendS(&cpu->name, "Unknown"); + if (cpu->vendor.length > 0) + ffStrbufAppend(&cpu->name, &cpu->vendor); + else + ffStrbufAppendS(&cpu->name, "Unknown"); ++pstart; continue; }