mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 22:01:36 -08:00
Missing 'break' and 'return' statements in seralize.d
This commit is contained in:
parent
061354cd61
commit
17d6c88f78
1 changed files with 3 additions and 1 deletions
|
|
@ -14,7 +14,7 @@
|
|||
*/
|
||||
|
||||
#include <ecl/ecl.h>
|
||||
#include <strings.h>
|
||||
#include <string.h>
|
||||
#define ECL_DEFINE_AET_SIZE
|
||||
#include <ecl/internal.h>
|
||||
|
||||
|
|
@ -229,6 +229,7 @@ serialize_one(pool_t pool, cl_object what)
|
|||
#ifdef ECL_LONG_FLOAT
|
||||
case t_longfloat:
|
||||
#endif
|
||||
break;
|
||||
#ifndef ECL_SMALL_CONS
|
||||
case t_cons:
|
||||
buffer->cons.car = enqueue(pool, buffer->cons.car);
|
||||
|
|
@ -535,6 +536,7 @@ ecl_deserialize(uint8_t *raw)
|
|||
for (i = 0; i < num_el; i++) {
|
||||
fixup(output[i], output);
|
||||
}
|
||||
return output[0];
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue