You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.1KB

  1. /*
  2. * C99-compatible snprintf() and vsnprintf() implementations
  3. * Copyright (c) 2012 Ronald S. Bultje <rsbultje@gmail.com>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <stdio.h>
  22. #include <stdarg.h>
  23. #include <limits.h>
  24. #include <string.h>
  25. #include "libavutil/error.h"
  26. #if !defined(va_copy) && defined(_MSC_VER)
  27. #define va_copy(dst, src) ((dst) = (src))
  28. #endif
  29. int avpriv_snprintf(char *s, size_t n, const char *fmt, ...)
  30. {
  31. va_list ap;
  32. int ret;
  33. va_start(ap, fmt);
  34. ret = avpriv_vsnprintf(s, n, fmt, ap);
  35. va_end(ap);
  36. return ret;
  37. }
  38. int avpriv_vsnprintf(char *s, size_t n, const char *fmt,
  39. va_list ap)
  40. {
  41. int ret;
  42. va_list ap_copy;
  43. if (n == 0)
  44. return _vscprintf(fmt, ap);
  45. else if (n > INT_MAX)
  46. return AVERROR(EOVERFLOW);
  47. /* we use n - 1 here because if the buffer is not big enough, the MS
  48. * runtime libraries don't add a terminating zero at the end. MSDN
  49. * recommends to provide _snprintf/_vsnprintf() a buffer size that
  50. * is one less than the actual buffer, and zero it before calling
  51. * _snprintf/_vsnprintf() to workaround this problem.
  52. * See http://msdn.microsoft.com/en-us/library/1kt27hek(v=vs.80).aspx */
  53. memset(s, 0, n);
  54. va_copy(ap_copy, ap);
  55. ret = _vsnprintf(s, n - 1, fmt, ap_copy);
  56. va_end(ap_copy);
  57. if (ret == -1)
  58. ret = _vscprintf(fmt, ap);
  59. return ret;
  60. }