Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/yaz
[yaz-moved-to-github.git] / src / snprintf.c
index 0221f97..2aedb83 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2008 Index Data
+ * Copyright (C) 1995-2010 Index Data
  * See the file LICENSE for details.
  */
 /**
@@ -17,7 +17,8 @@ void yaz_vsnprintf(char *buf, size_t size, const char *fmt, va_list ap)
     vsnprintf(buf, size, fmt, ap);
 #else
 #ifdef WIN32
-    _vsnprintf(buf, size, fmt, ap);
+    _vsnprintf(buf, size-1, fmt, ap);
+    buf[size-1] = '\0';
 #else
     vsprintf(buf, fmt, ap);
 #endif
@@ -35,6 +36,7 @@ void yaz_snprintf(char *buf, size_t size, const char *fmt, ...)
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab