KMSDRM: fix compilation on linux, no d_namlen (Bug 4624)
This commit is contained in:
parent
722b55525f
commit
1bf91c2b1c
1 changed files with 5 additions and 1 deletions
|
@ -101,7 +101,11 @@ static int get_dricount(void)
|
|||
folder = opendir(KMSDRM_DRI_PATH);
|
||||
if (folder) {
|
||||
while ((res = readdir(folder))) {
|
||||
if (res->d_namlen > 4 && strncmp(res->d_name, "card", 4)) {
|
||||
int len = 0;
|
||||
if (res->d_name) {
|
||||
len = SDL_strlen(res->d_name);
|
||||
}
|
||||
if (len > 4 && strncmp(res->d_name, "card", 4)) {
|
||||
devcount++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue