Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Tags: solettaproject/soletta

Tags

v2_rc2

Toggle v2_rc2's commit message
flow/form: add missing warning ignoring pragma section

This will help clean warnings on our build. Those truncations are
intentional, as commented before.

Signed-off-by: Gustavo Lima Chaves <gustavo.lima.chaves@intel.com>

v2_rc1

Toggle v2_rc1's commit message
Bump version to 2, finally.

Signed-off-by: Gustavo Lima Chaves <gustavo.lima.chaves@intel.com>

v1

Toggle v1's commit message
build: increment version for V1 release

V1 is a stable C API release, done after almost
3k public commits and about 40 contributors.

A few protocols API were marked as experimental,
since they were recently added to Soletta and
changes are expected:
 * Bluetooth
 * GATT
 * Netctl
 * Mavlink
 * LWM2M

Really nice =)

Signed-off-by: Bruno Dilly <bruno.dilly@intel.com>

v1_beta20

Toggle v1_beta20's commit message
LWM2M: Fix a NULL pointer deference.

After setting client->bootstrap_ctx.server_uri to NULL, a SOL_WRN() statement
was trying to print the contents of client->bootstrap_ctx.server_uri.

Signed-off-by: Guilherme Iscaro <guilherme.iscaro@intel.com>

v1_beta19

Toggle v1_beta19's commit message
doc:http:server: Doxygen fixes

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>

v1_beta18

Toggle v1_beta18's commit message
sol-log: Fix checking for NULL file and function macros

We can simplify the logic a little when printing the file and function
in sol-log by imposing them to be an empty string (instead of NULL).

This also solves this warning using gcc 5.3:

      CC   build/stage/lib/common/sol-worker-thread.o
      CC   build/stage/lib/common/sol-worker-thread-impl-posix.o
./src/lib/common/sol-log.c: In function 'sol_log_domain_init_level':
./src/lib/common/sol-log.c:63:34: warning: the address of '__PRETTY_FUNCTION__' will always evaluate as  true' [-Waddress]
                 SOL_LOG_FUNCTION ? : "", \
                                  ^
./src/lib/common/sol-log.c:271:5: note: in expansion of macro 'SOL_LOG_INIT_CHECK'
     SOL_LOG_INIT_CHECK("domain=%p", domain);
     ^
./src/lib/common/sol-log.c: In function 'sol_log_vprint':
./src/lib/common/sol-log.c:63:34: warning: the address of '__PRETTY_FUNCTION__' will always evaluate as  true' [-Waddress]
                 SOL_LOG_FUNCTION ? : "", \
                                  ^
./src/lib/common/sol-log.c:301:5: note: in expansion of macro 'SOL_LOG_INIT_CHECK'
     SOL_LOG_INIT_CHECK("domain=%p, file=%s, function=%s, line=%d, fomart=%s",
     ^
./src/lib/common/sol-log.c: In function 'sol_log_set_print_function':
./src/lib/common/sol-log.c:63:34: warning: the address of '__PRETTY_FUNCTION__' will always evaluate as  true' [-Waddress]
                 SOL_LOG_FUNCTION ? : "", \
                                  ^
./src/lib/common/sol-log.c:341:5: note: in expansion of macro 'SOL_LOG_INIT_CHECK'
     SOL_LOG_INIT_CHECK("cb=%p, data=%p", cb, data);
     ^
./src/lib/common/sol-log.c: In function 'sol_log_level_to_str':
./src/lib/common/sol-log.c:63:34: warning: the address of '__PRETTY_FUNCTION__' will always evaluate as  true' [-Waddress]
                 SOL_LOG_FUNCTION ? : "", \
                                  ^
./src/lib/common/sol-log.c:369:5: note: in expansion of macro 'SOL_LOG_INIT_CHECK'
     SOL_LOG_INIT_CHECK("level=%hhu, buf=%p, buflen=%zd", level, buf, buflen);
     ^
./src/lib/common/sol-log.c: In function 'sol_log_get_level_color':
./src/lib/common/sol-log.c:63:34: warning: the address of '__PRETTY_FUNCTION__' will always evaluate as  true' [-Waddress]
                 SOL_LOG_FUNCTION ? : "", \
                                  ^

Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@intel.com>

v1_beta17

Toggle v1_beta17's commit message
Persistence: Do not let the string default value be NULL.

By doing so, the value variable at persist_do() will never be NULL.

Signed-off-by: Guilherme Iscaro <guilherme.iscaro@intel.com>

v1_beta16

Toggle v1_beta16's commit message
Change license of a few files that weren't updated by the script

I forgot to check a few extensions.

Signed-off-by: Bruno Dilly <bruno.dilly@intel.com>

v1_beta15

Toggle v1_beta15's commit message
run-fbp-tests: Fix bug #1516

    According to https://docs.python.org/2/library/logging.html#module-level-functions,
    the logging instantiation in tools/run-fbp-runner is incorrect:
        root = logging.getLogger()
        hdlr = root.handlers[0]
        fmt = logging.Formatter('%(message)s')
        hdlr.setFormatter(fmt)
        hdlr.setLevel(level)

    before invoke getLogger(), python script should call basicConfig() to ensure that at least one handler is available.

Signed-off-by: Lei Yang <lei.a.yang@intel.com>

v1_beta14

Toggle v1_beta14's commit message
form: Fix memory leak

sol_buffer_init is being called inside a loop without the
sol_buffer_fini causing the previous allocated data being lost.

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>