Kaynağa Gözat

Fix strlcpy() size argument

It should be the size of the destination buffer, not the source.

In this case, both src and dest have the same size.
master
sin 9 yıl önce
ebeveyn
işleme
81ec260516
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      noice.c

+ 1
- 1
noice.c Dosyayı Görüntüle

@@ -598,7 +598,7 @@ nochange:
goto nochange;
}
/* Save history */
strlcpy(oldpath, path, sizeof(path));
strlcpy(oldpath, path, sizeof(oldpath));
strlcpy(path, dir, sizeof(path));
/* Reset filter */
strlcpy(fltr, ifilter, sizeof(fltr));


Yükleniyor…
İptal
Kaydet