Skip to content
代码片段 群组 项目
提交 ddd99e43 编辑于 作者: Thiago Macieira's avatar Thiago Macieira
浏览文件

Fix the simplereader example after the API change a while ago


We changed a lot of "char*" that was binary to "uint8_t*". The example
was never fixed.

This fixes #23.

Signed-off-by: default avatarThiago Macieira <thiago.macieira@intel.com>
上级 ad42bb7e
No related branches found
No related tags found
无相关合并请求
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
static char *readfile(const char *fname, size_t *size) static uint8_t *readfile(const char *fname, size_t *size)
{ {
struct stat st; struct stat st;
FILE *f = fopen(fname, "rb"); FILE *f = fopen(fname, "rb");
...@@ -14,7 +14,7 @@ static char *readfile(const char *fname, size_t *size) ...@@ -14,7 +14,7 @@ static char *readfile(const char *fname, size_t *size)
return NULL; return NULL;
if (fstat(fileno(f), &st) == -1) if (fstat(fileno(f), &st) == -1)
return NULL; return NULL;
char *buf = malloc(st.st_size); uint8_t *buf = malloc(st.st_size);
*size = fread(buf, st.st_size, 1, f); *size = fread(buf, st.st_size, 1, f);
fclose(f); fclose(f);
return buf; return buf;
...@@ -26,10 +26,10 @@ static void indent(int nestingLevel) ...@@ -26,10 +26,10 @@ static void indent(int nestingLevel)
puts(" "); puts(" ");
} }
static void dumpbytes(const char *buf, size_t len) static void dumpbytes(const uint8_t *buf, size_t len)
{ {
while (len--) while (len--)
printf("%02X ", (unsigned char)*buf++); printf("%02X ", *buf++);
} }
static bool dumprecursive(CborValue *it, int nestingLevel) static bool dumprecursive(CborValue *it, int nestingLevel)
...@@ -67,19 +67,25 @@ static bool dumprecursive(CborValue *it, int nestingLevel) ...@@ -67,19 +67,25 @@ static bool dumprecursive(CborValue *it, int nestingLevel)
break; break;
} }
case CborByteStringType: case CborByteStringType: {
uint8_t *buf;
size_t n;
err = cbor_value_dup_byte_string(it, &buf, &n, it);
if (err)
return err; // parse error
dumpbytes(buf, n);
puts("");
free(buf);
continue;
}
case CborTextStringType: { case CborTextStringType: {
char *buf; char *buf;
size_t n; size_t n;
err = cbor_value_dup_string(it, &buf, &n, it); err = cbor_value_dup_text_string(it, &buf, &n, it);
if (err) if (err)
return err; // parse error return err; // parse error
if (type == CborByteStringType) { puts(buf);
dumpbytes(buf, n);
puts("");
} else {
puts(buf);
}
free(buf); free(buf);
continue; continue;
} }
...@@ -153,7 +159,7 @@ int main(int argc, char **argv) ...@@ -153,7 +159,7 @@ int main(int argc, char **argv)
} }
size_t length; size_t length;
char *buf = readfile(argv[1], &length); uint8_t *buf = readfile(argv[1], &length);
if (!buf) { if (!buf) {
perror("readfile"); perror("readfile");
return 1; return 1;
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册