aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2009-12-02 23:48:50 +0200
committerPetri Lehtinen <petri@digip.org>2009-12-02 23:53:54 +0200
commitd67aeb9739bf3e963ceaa8b622d20cd87a0b65fe (patch)
tree62d1fc6b7f36c1bd2ffc9c350dbf33269782acb7 /src
parente0a88d19d1f103c32bbaf4c20a83575413c4bf80 (diff)
downloadjansson-d67aeb9739bf3e963ceaa8b622d20cd87a0b65fe.zip
jansson-d67aeb9739bf3e963ceaa8b622d20cd87a0b65fe.tar.gz
jansson-d67aeb9739bf3e963ceaa8b622d20cd87a0b65fe.tar.bz2
Use int32_t instead of plain int with Unicode code points
On some architectures, int just isn't big enough to hold all Unicode code points.
Diffstat (limited to 'src')
-rw-r--r--src/dump.c1
-rw-r--r--src/load.c9
-rw-r--r--src/utf.c6
3 files changed, 10 insertions, 6 deletions
diff --git a/src/dump.c b/src/dump.c
index ac0b8dc..8d2a82b 100644
--- a/src/dump.c
+++ b/src/dump.c
@@ -9,6 +9,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <stdint.h>
#include <jansson.h>
#include "jansson_private.h"
diff --git a/src/load.c b/src/load.c
index 1ae62b3..32d6500 100644
--- a/src/load.c
+++ b/src/load.c
@@ -14,6 +14,7 @@
#include <string.h>
#include <stdarg.h>
#include <assert.h>
+#include <stdint.h>
#include <jansson.h>
#include "jansson_private.h"
@@ -221,10 +222,10 @@ static void lex_save_cached(lex_t *lex)
}
/* assumes that str points to 'u' plus at least 4 valid hex digits */
-static int decode_unicode_escape(const char *str)
+static int32_t decode_unicode_escape(const char *str)
{
int i;
- int value = 0;
+ int32_t value = 0;
assert(str[0] == 'u');
@@ -325,7 +326,7 @@ static void lex_scan_string(lex_t *lex, json_error_t *error)
if(*p == 'u') {
char buffer[4];
int length;
- int value;
+ int32_t value;
value = decode_unicode_escape(p);
p += 5;
@@ -333,7 +334,7 @@ static void lex_scan_string(lex_t *lex, json_error_t *error)
if(0xD800 <= value && value <= 0xDBFF) {
/* surrogate pair */
if(*p == '\\' && *(p + 1) == 'u') {
- int value2 = decode_unicode_escape(++p);
+ int32_t value2 = decode_unicode_escape(++p);
p += 5;
if(0xDC00 <= value2 && value2 <= 0xDFFF) {
diff --git a/src/utf.c b/src/utf.c
index cf2e8e4..2efcb68 100644
--- a/src/utf.c
+++ b/src/utf.c
@@ -6,8 +6,9 @@
*/
#include <string.h>
+#include <stdint.h>
-int utf8_encode(int codepoint, char *buffer, int *size)
+int utf8_encode(int32_t codepoint, char *buffer, int *size)
{
if(codepoint < 0)
return -1;
@@ -81,7 +82,8 @@ int utf8_check_first(char byte)
int utf8_check_full(const char *buffer, int size)
{
- int i, value = 0;
+ int i;
+ int32_t value = 0;
unsigned char u = (unsigned char)buffer[0];
if(size == 2)