aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnneli Cuss <[email protected]>2011-09-07 09:17:42 +1000
committerHenrik Nord <[email protected]>2011-09-07 10:57:42 +0200
commitff9a8a6340908344b0a06cf96f93180ec9479d3a (patch)
treec260418d487871326c9d42ad5e0be7a82ebd4e17
parent292eb1b63dcd8794b468f11cdec55afdbd5c48f6 (diff)
downloadotp-ff9a8a6340908344b0a06cf96f93180ec9479d3a.tar.gz
otp-ff9a8a6340908344b0a06cf96f93180ec9479d3a.tar.bz2
otp-ff9a8a6340908344b0a06cf96f93180ec9479d3a.zip
Make comment reflect code in erl_interface/src/misc/ei_decode_term.c
Note that ei_decode_term.h has the correct behaviour described! Also removed extraneous '/* return 0; */' comments.
-rw-r--r--lib/erl_interface/src/misc/ei_decode_term.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/erl_interface/src/misc/ei_decode_term.c b/lib/erl_interface/src/misc/ei_decode_term.c
index bfb4571337..0b82ef0e35 100644
--- a/lib/erl_interface/src/misc/ei_decode_term.c
+++ b/lib/erl_interface/src/misc/ei_decode_term.c
@@ -25,8 +25,8 @@
#include "ei_decode_term.h"
#include "putget.h"
-/* Returns 0 on successful encoding, -1 on error, and 1 if the term seems
- alright, but does not fit in the term structure. If it returns 0, the
+/* Returns 1 on successful encoding, -1 on error, and 0 if the term seems
+ alright, but does not fit in the term structure. If it returns 1, the
index will be incremented, and the term contains the decoded term. */
int ei_decode_ei_term(const char* buf, int* index, ei_term* term)
@@ -111,10 +111,10 @@ int ei_decode_ei_term(const char* buf, int* index, ei_term* term)
break;
case ERL_SMALL_TUPLE_EXT:
term->arity = get8(s);
- break; /*return 0;*/
+ break;
case ERL_LARGE_TUPLE_EXT:
term->arity = get32be(s);
- break; /*return 0;*/
+ break;
case ERL_NIL_EXT:
term->arity = 0;
break;
@@ -123,7 +123,7 @@ int ei_decode_ei_term(const char* buf, int* index, ei_term* term)
return 0;
case ERL_LIST_EXT:
term->arity = get32be(s);
- break; /*return 0;*/
+ break;
case ERL_BINARY_EXT:
term->size = get32be(s);
return 0;