Refactor decoder input stream
[jansson.git] / src / error.c
index cd80756..b950c2c 100644 (file)
@@ -8,6 +8,7 @@ void jsonp_error_init(json_error_t *error, const char *source)
         error->text[0] = '\0';
         error->line = -1;
         error->column = -1;
+        error->position = 0;
 
         strncpy(error->source, source, JSON_ERROR_SOURCE_LENGTH);
         error->source[JSON_ERROR_SOURCE_LENGTH - 1] = '\0';
@@ -15,17 +16,17 @@ void jsonp_error_init(json_error_t *error, const char *source)
 }
 
 void jsonp_error_set(json_error_t *error, int line, int column,
-                     const char *msg, ...)
+                     size_t position, const char *msg, ...)
 {
     va_list ap;
 
     va_start(ap, msg);
-    jsonp_error_vset(error, line, column, msg, ap);
+    jsonp_error_vset(error, line, column, position, msg, ap);
     va_end(ap);
 }
 
 void jsonp_error_vset(json_error_t *error, int line, int column,
-                      const char *msg, va_list ap)
+                      size_t position, const char *msg, va_list ap)
 {
     if(!error)
         return;
@@ -37,6 +38,7 @@ void jsonp_error_vset(json_error_t *error, int line, int column,
 
     error->line = line;
     error->column = column;
+    error->position = position;
 
     vsnprintf(error->text, JSON_ERROR_TEXT_LENGTH, msg, ap);
 }