No Description

010-fix-gets-removal.patch 513B

123456789101112131415
  1. diff --git a/lib/stdio.in.h b/lib/stdio.in.h
  2. index 9dc7c4a..9fdac77 100644
  3. --- a/lib/stdio.in.h
  4. +++ b/lib/stdio.in.h
  5. @@ -711,10 +711,6 @@ _GL_CXXALIAS_SYS (gets, char *, (char *s));
  6. # undef gets
  7. # endif
  8. _GL_CXXALIASWARN (gets);
  9. -/* It is very rare that the developer ever has full control of stdin,
  10. - so any use of gets warrants an unconditional warning. Assume it is
  11. - always declared, since it is required by C89. */
  12. -_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
  13. #endif