Start of 7.1.0.PRE

Fixed memleak
This commit is contained in:
Olof hagsand 2024-03-12 15:07:57 +01:00
parent 28050f44f8
commit e07fdb3089
5 changed files with 12 additions and 8 deletions

View file

@ -1,6 +1,7 @@
# Clixon Changelog # Clixon Changelog
* [7.0.0](#660) 8 March 2024 * [7.1.0](#710) Expected: May 2024
* [7.0.0](#700) 8 March 2024
* [6.5.0](#650) 6 December 2023 * [6.5.0](#650) 6 December 2023
* [6.4.0](#640) 30 September 2023 * [6.4.0](#640) 30 September 2023
* [6.3.0](#630) 29 July 2023 * [6.3.0](#630) 29 July 2023
@ -8,6 +9,9 @@
* [6.1.0](#610) 19 Feb 2023 * [6.1.0](#610) 19 Feb 2023
* [6.0.0](#600) 29 Nov 2022 * [6.0.0](#600) 29 Nov 2022
## 7.1.0
Expected: May 2024
## 7.0.0 ## 7.0.0
8 March 2024 8 March 2024

4
configure vendored
View file

@ -2812,9 +2812,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
CLIXON_VERSION_MAJOR="7" CLIXON_VERSION_MAJOR="7"
CLIXON_VERSION_MINOR="0" CLIXON_VERSION_MINOR="1"
CLIXON_VERSION_PATCH="0" CLIXON_VERSION_PATCH="0"
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}\"" CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}.PRE\""
# Debug flag # Debug flag
# Check whether --enable-debug was given. # Check whether --enable-debug was given.

View file

@ -49,9 +49,9 @@ AC_CONFIG_SRCDIR([lib/clixon/clixon.h.in])
AC_CONFIG_AUX_DIR(config-aux) AC_CONFIG_AUX_DIR(config-aux)
CLIXON_VERSION_MAJOR="7" CLIXON_VERSION_MAJOR="7"
CLIXON_VERSION_MINOR="0" CLIXON_VERSION_MINOR="1"
CLIXON_VERSION_PATCH="0" CLIXON_VERSION_PATCH="0"
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}\"" CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}.PRE\""
# Debug flag # Debug flag
AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],[Build with debug symbols, default: no]),[ AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],[Build with debug symbols, default: no]),[

View file

@ -476,6 +476,8 @@ api_path_fmt_subst_list_key(cbuf *cb,
} }
retval = 0; retval = 0;
done: done:
if (xtop)
xml_free(xtop);
return retval; return retval;
} }

View file

@ -643,10 +643,8 @@ clixon_msg_rcv11(int s,
cbuf_reset(cbmsg); cbuf_reset(cbmsg);
break; break;
} }
if (eom == 0){ if (eom == 0)
continue; continue;
}
clixon_debug(CLIXON_DBG_MSG, "Recv ext: %s", cbuf_get(cbmsg));
} }
} }
clixon_debug(CLIXON_DBG_MSG, "Recv: %s", cbuf_get(cbmsg)); clixon_debug(CLIXON_DBG_MSG, "Recv: %s", cbuf_get(cbmsg));