Follow-up Comment #1, bug #28422 (project grub):

This patch is inappropriate. It introduces arbitrary limit on pathlen even on
platforms that aren't limited in this way (e.g. GNU/Hurd). If you make a patch
with something like:
#ifdef __NetBSD__
p = xmalloc (PATH_MAX);
realpath (path, p);
#else
p = realpath (path, NULL);
#endif
Then we'll probably accept it

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?28422>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



_______________________________________________
Bug-grub mailing list
Bug-grub@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-grub

Reply via email to