message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
openwsman: wsman-win-client-transport: plug leak in error path
Free allocated memory in error path. | @@ -111,6 +111,7 @@ int wsmc_transport_init(WsManClient *cl, void *arg)
while (InterlockedExchange(&cl->lock_session_handle, 1L));
if (cl->session_handle != NULL) {
cl->lock_session_handle = 0L;
+ u_free(agent);
return 0;
}
if(!cl->proxy_data.proxy){
|
Documentation: Remove link to non-existent directory | @@ -6,7 +6,7 @@ There should be no scripts top-level but only in sub directories.
These files are installed on the target system.
-- [kdb](kdb): for scripts to be used with `kdb <script>`.
+- kdb: for scripts to be used with `kdb <script>`.
- [ffconfig](ffconfig): to configure firefox.
- [completion](completion): for s... |
removes unused fprintf arg | @@ -978,7 +978,7 @@ _sist_rest()
"and do not delete your pier!\n"));
u3_lo_bail();
}
- uL(fprintf(uH, "rest: checkpoint is up-to-date\n", ful_c));
+ uL(fprintf(uH, "rest: checkpoint is up-to-date\n"));
}
else {
// Execute the fscking things. This is pretty much certain to crash.
|
vcs: Statically link against libfesvr
libfesvr.so is no longer built after fesvr merged with riscv-isa-sim. | @@ -48,8 +48,7 @@ VCS_CC_OPTS = \
-CC "-I$(VCS_HOME)/include" \
-CC "-I$(RISCV)/include" \
-CC "-std=c++11" \
- -CC "-Wl,-rpath,$(RISCV)/lib" \
- $(RISCV)/lib/libfesvr.so
+ $(RISCV)/lib/libfesvr.a
VCS_NONCC_OPTS = \
+lint=all,noVCDE,noONGS,noUI \
|
fix types and default values in vna.c | @@ -15,8 +15,8 @@ volatile uint16_t *rx_cntr;
volatile float *rx_data;
int sock_thread = -1;
-uint32_t rate_thread = 1;
-uint32_t size_thread = 600;
+uint32_t rate_thread = 5;
+uint32_t size_thread = 6000;
void *read_handler(void *arg);
@@ -31,10 +31,9 @@ int main(int argc, char *argv[])
volatile int16_t *tx_level[2];
... |
Remove unused reference from property select | import React, { useEffect, useState } from "react";
import { useSelector } from "react-redux";
-import { Actor, ActorDirection } from "store/features/entities/entitiesTypes";
+import { Actor } from "store/features/entities/entitiesTypes";
import { RootState } from "store/configureStore";
import {
OptGroup,
|
VERSION bump to version 2.0.198 | @@ -61,7 +61,7 @@ set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
# set version of the project
set(LIBYANG_MAJOR_VERSION 2)
set(LIBYANG_MINOR_VERSION 0)
-set(LIBYANG_MICRO_VERSION 197)
+set(LIBYANG_MICRO_VERSION 198)
set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION}... |
gpio: Fixed typo in generic_gpio example
Closes
Updated commit message] | @@ -84,7 +84,7 @@ void app_main(void)
io_conf.pull_up_en = 1;
gpio_config(&io_conf);
- //change gpio intrrupt type for one pin
+ //change gpio interrupt type for one pin
gpio_set_intr_type(GPIO_INPUT_IO_0, GPIO_INTR_ANYEDGE);
//create a queue to handle gpio event from isr
|
Use lookup function in getValueAsString | @@ -225,14 +225,7 @@ kdb_long_double_t elektraGetLongDoubleArrayElement (Elektra * elektra, const cha
static const char * getValueAsString (Elektra * elektra, const char * name, KDBType type)
{
Key * const key = generateLookupKey (elektra, name);
-
- Key * const resultKey = ksLookup (elektra->config, key, 0);
- if (res... |
namemap: handle a NULL return when looking for a non-legacy cipher/MD
Fixes | @@ -409,6 +409,7 @@ static void get_legacy_cipher_names(const OBJ_NAME *on, void *arg)
{
const EVP_CIPHER *cipher = (void *)OBJ_NAME_get(on->name, on->type);
+ if (cipher != NULL)
get_legacy_evp_names(NID_undef, EVP_CIPHER_get_type(cipher), NULL, arg);
}
@@ -416,6 +417,7 @@ static void get_legacy_md_names(const OBJ_NAM... |
BugID:19041481: modify the help message in Config.in | @@ -4,8 +4,7 @@ menuconfig AOS_COMP_MBEDTLS
help
The mbedtls provides cryptographic algorithms
(AES, RSA, MD5/SHA1/SHA256/SHA512 etc.), X.509 certificate and
- TLS/DTLS protocol support.
- It's ported from open source mbedtls, for details, please refer to
+ TLS/DTLS protocol support. For details, please refer to
https:... |
Rust: Use the key error structs instead of enum | use std::error::Error;
use std::fmt;
-use crate::{KeyError, ReadOnly, ReadableKey, StringKey, WriteableKey};
+use crate::{ReadOnly, ReadableKey, StringKey, WriteableKey, KeyNameInvalidError, KeyNameReadOnlyError};
use bitflags::bitflags;
use std::convert::TryInto;
@@ -236,7 +236,7 @@ impl KeySet {
}
/// Lookup a key by... |
[patches] - Adjust raja.patch
Re-enable Vtable unit tests. | @@ -11,16 +11,3 @@ index 934bfc68e..027895111 100644
#define RAJA_AUTO_ATOMIC \
RAJA::cuda_atomic {}
#elif defined(__HIP_DEVICE_COMPILE__)
-diff --git a/test/unit/workgroup/CMakeLists.txt b/test/unit/workgroup/CMakeLists.txt
-index d3228a9a5..5d4d84eb0 100644
---- a/test/unit/workgroup/CMakeLists.txt
-+++ b/test/unit/w... |
push a task to call 6p. | @@ -82,10 +82,10 @@ void msf_updateCellsPassed(open_addr_t* neighbor){
msf_vars.numCellsPassed++;
if (msf_vars.numCellsPassed == MAX_NUMCELLS){
if (msf_vars.numCellsUsed > LIM_NUMCELLSUSED_HIGH){
- msf_trigger6pAdd();
+ scheduler_push_task(msf_trigger6pAdd,TASKPRIO_MSF);
}
if (msf_vars.numCellsUsed < LIM_NUMCELLSUSED_L... |
libmemif: icmp-responder example buffer management fix
Type: fix | @@ -290,7 +290,6 @@ on_interrupt (memif_conn_handle_t conn, void *private_ctx, uint16_t qid)
memif_connection_t *c = &memif_connection;
int err;
uint16_t rx;
- uint16_t fb = 0;
/* receive data from shared memory buffers */
err = memif_rx_burst (c->conn, qid, c->rx_bufs, MAX_MEMIF_BUFS, &rx);
c->rx_buf_num += rx;
@@ -31... |
Avoid macro redefinition | @@ -180,8 +180,10 @@ Atomic64 Release_Load(volatile const Atomic64* ptr);
"Atomic operations are not supported on your platform"
#if defined(__has_feature) && __has_feature(thread_sanitizer)
+#if !defined(THREAD_SANITIZER)
#define THREAD_SANITIZER
#endif
+#endif
// ThreadSanitizer, http://clang.llvm.org/docs/ThreadSani... |
disable demo app custom fee controls | @@ -65,9 +65,9 @@ UITextViewDelegate, UIPickerViewDelegate, UIPickerViewDataSource {
}
target = Address.create (string: self.recvField.text!, network: self.wallet.manager.network)
- gasPriceSegmentedController.isEnabled = isEthCurrency && canUseFeeBasis
- gasLimitSegmentedController.isEnabled = isEthCurrency && canUseF... |
fix timing problem in sdr_transceiver_emb/sp.tcl | @@ -398,6 +398,7 @@ cell xilinx.com:ip:floating_point:7.1 fp_0 {
cell xilinx.com:ip:floating_point:7.1 fp_1 {
OPERATION_TYPE Logarithm
RESULT_PRECISION_TYPE Single
+ C_MULT_USAGE No_Usage
HAS_ARESETN true
} {
S_AXIS_A fp_0/M_AXIS_RESULT
|
nimble/ll: Fix build | @@ -524,7 +524,7 @@ ble_ll_sched_master_new(struct ble_ll_conn_sm *connsm,
}
}
earliest_start += MYNEWT_VAL(BLE_LL_CONN_INIT_MIN_WIN_OFFSET) *
- BLE_LL_SCHED_TICKS_PER_SLOT;
+ BLE_LL_SCHED_USECS_PER_SLOT;
itvl_t = connsm->conn_itvl_ticks;
/* We have to find a place for this schedule */
|
cmake: give instructions what to do in internal inconsistency | @@ -196,6 +196,8 @@ function (restore_variable PLUGIN_NAME VARIABLE)
message (
FATAL_ERROR
"Internally inconsistency, plugin ${PLUGIN_NAME} got different values for variable ${VARIABLE}: '${${VARIABLE}}' != '${VAR}'"
+ "Concatinate variables that contain the value of ${VARIABLE} in a single variable during the DEPENDEN... |
fixes for the pro build | @@ -613,13 +613,7 @@ set(TIC80LIB_SRC
${TIC80LIB_DIR}/net.c
)
-set(TIC80_OUTPUTS tic80)
-
-if(BUILD_PRO)
- list(APPEND TIC80_OUTPUTS tic80pro)
-endif()
-
-foreach(TIC80_OUTPUT ${TIC80_OUTPUTS})
+set(TIC80_OUTPUT tic80)
add_library(${TIC80_OUTPUT}lib STATIC ${TIC80LIB_SRC} ${DEMO_CARTS_OUT})
@@ -633,10 +627,8 @@ foreach... |
stm32f103xb : Process USB TX before USB RX
If TX and RX USB events are pending at the same time, process the TX
event first. This prevents MSD problems from packets being processed
in the wrong order. | @@ -648,35 +648,35 @@ void USBD_Handler(void)
num = istr & ISTR_EP_ID;
val = EPxREG(num);
- if (val & EP_CTR_RX) {
- EPxREG(num) = EP_VAL_UNCHANGED(val) & ~EP_CTR_RX;
+ if (val & EP_CTR_TX) {
+ EPxREG(num) = EP_VAL_UNCHANGED(val) & ~EP_CTR_TX;
#ifdef __RTX
if (USBD_RTX_EPTask[num]) {
- isr_evt_set((val & EP_SETUP) ? US... |
Try to specify shell: it appears that GitHub actions switched default shell from cmd.exe to PowerShell without any prior notice :-/ | @@ -28,5 +28,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_PULL_TOKEN: ${{ secrets.GIT_PULL_TOKEN }}
- run: |
- $GITHUB_WORKSPACE\\build-tests.cmd ${{ matrix.arch }} ${{ matrix.config }}
+ shell: cmd
+ run: build-tests.cmd ${{ matrix.arch }} ${{ matrix.config }}
|
Refactor compile-time assertion checks in c.h
This commit refactors and simplifies the definitions of StaticAssertStmt,
StaticAssertExpr and StaticAssertDecl. By unifying the C and C++
fallback implementations, this reduces the number of different
implementations from four to three.
Author: Michael Paquier
Discussion: | @@ -836,43 +836,37 @@ extern void ExceptionalCondition(const char *conditionName,
* The macro StaticAssertDecl() is suitable for use at file scope (outside of
* any function).
*
+ * On recent C++ compilers, we can use standard static_assert().
+ *
* Otherwise we fall back on a kluge that assumes the compiler will compl... |
host/mesh: Fail provisioning when RFU values are used
When Public Key field is set to RFU value then we should send
Provisioning Fail with Invalid Format error.
This is port of | @@ -119,9 +119,9 @@ static void prov_start(const uint8_t *data)
return;
}
- if (data[1] == PUB_KEY_OOB &&
- !(MYNEWT_VAL(BLE_MESH_PROV_OOB_PUBLIC_KEY) &&
- bt_mesh_prov->public_key_be)) {
+ if (data[1] > PUB_KEY_OOB ||
+ (data[1] == PUB_KEY_OOB &&
+ (!MYNEWT_VAL(BLE_MESH_PROV_OOB_PUBLIC_KEY) || !bt_mesh_prov->public_ke... |
Clean up Makefile options | @@ -43,7 +43,8 @@ HEADERS = \
OBJECTS = $(SOURCES:.cpp=.o)
-CPPFLAGS = -std=c++11 -O3 -Wall -W -Wall -Wextra -Wpedantic -Werror -Werror=shadow -msse2 -mfpmath=sse
+CPPFLAGS = -std=c++11 -O3 -msse2 -mfpmath=sse \
+ -Wall -Wextra -Wpedantic -Werror -Werror=shadow
astcenc: $(OBJECTS)
@g++ -o $@ $^ $(CPPFLAGS) -lpthread
|
add compiler-rt to components to build | @@ -58,7 +58,7 @@ if [ "$AOMP_CHECK_GIT_BRANCH" == 1 ] ; then
else
DO_TESTS="-DLLVM_BUILD_TESTS=OFF -DLLVM_INCLUDE_TESTS=OFF -DCLANG_INCLUDE_TESTS=OFF"
fi
-MYCMAKEOPTS="-DLLVM_ENABLE_PROJECTS=clang;lld -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=$INSTALL_PROJECT -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_TARGETS_TO_B... |
Fix spelling error in name of glms_rotate_x. | CGLM_INLINE mat4s glms_scale_make(vec3s v);
CGLM_INLINE mat4s glms_scale(mat4s m, vec3s v);
CGLM_INLINE mat4s glms_scale_uni(mat4s m, float s);
- CGLM_INLINE mat4s glmx_rotate_x(mat4s m, float angle);
+ CGLM_INLINE mat4s glms_rotate_x(mat4s m, float angle);
CGLM_INLINE mat4s glms_rotate_y(mat4s m, float angle);
CGLM_IN... |
Fix numeric issue with newer compiler version when spatial extents for x- or y-axis are zero. | @@ -1107,7 +1107,7 @@ Digits(double min, double max )
int ipow10 = (int)floor(pow10);
int digitsPastDecimal = -ipow10;
- if (digitsPastDecimal < 0)
+ if (!isfinite(pow10) || digitsPastDecimal < 0)
{
//
// The range is more than 10, but not so big we need scientific
|
bug fix for the view scale update | @@ -5503,6 +5503,9 @@ ViewerWindow::SetInitialView3d()
// Kathleen Bonnell, Tue Mar 3 15:04:57 PST 2009
// CanDoLogViewScaling changed to PermitsLogViewScaling.
//
+// Alister Maguire, Tue Jun 12 16:38:16 PDT 2018
+// Added update of the view scale.
+//
// ***************************************************************... |
display: no need to put ' around target name | @@ -185,7 +185,7 @@ static void display_displayLocked(honggfuzz_t* hfuzz) {
display_put(" Target : [" ESC_BOLD "%d" ESC_RESET "] '" ESC_BOLD "%s" ESC_RESET "'\n",
hfuzz->linux.pid, hfuzz->linux.pidCmd);
} else {
- display_put(" Target : '" ESC_BOLD "%s" ESC_RESET "'\n", hfuzz->cmdline_txt);
+ display_put(" Target : " E... |
extmod/moduhashlib: Add md5 implementation using mbedtls. | #endif
#if MICROPY_SSL_MBEDTLS
+#include "mbedtls/md5.h"
#include "mbedtls/sha1.h"
#endif
@@ -268,6 +269,44 @@ STATIC mp_obj_t uhashlib_md5_digest(mp_obj_t self_in) {
}
#endif // MICROPY_SSL_AXTLS
+#if MICROPY_SSL_MBEDTLS
+
+#if MBEDTLS_VERSION_NUMBER < 0x02070000
+#define mbedtls_md5_starts_ret mbedtls_md5_starts
+#de... |
mem: do not permit zero-sized allocations (FLU-01-002)
note: security audit report by Cure53/CNCF | @@ -55,6 +55,10 @@ static inline ALLOCSZ_ATTR(1)
void *flb_malloc(const size_t size) {
void *aux;
+ if (size == 0) {
+ return NULL;
+ }
+
aux = malloc(size);
if (flb_unlikely(!aux && size)) {
return NULL;
@@ -67,6 +71,10 @@ static inline ALLOCSZ_ATTR(1)
void *flb_calloc(size_t n, const size_t size) {
void *buf;
+ if (s... |
Update README instructions for using Emscripten
Point to a newer URL
Use emcmake and emmake (which will set the CMake project file) | @@ -10,26 +10,18 @@ This file describes the compilation of libwebp into a JavaScript decoder
using Emscripten and CMake.
- install the Emscripten SDK following the procedure described at:
- https://kripken.github.io/emscripten-site/docs/getting_started/downloads.html
+ https://emscripten.org/docs/getting_started/downlo... |
py/objstringio: Guard bytesio_stream_p struct w/ MICROPY_PY_IO_BYTESIO.
It's static and can lead to a compilation warning/error when
MICROPY_PY_IO_BYTESIO is disabled. | @@ -244,12 +244,6 @@ STATIC const mp_stream_p_t stringio_stream_p = {
.is_text = true,
};
-STATIC const mp_stream_p_t bytesio_stream_p = {
- .read = stringio_read,
- .write = stringio_write,
- .ioctl = stringio_ioctl,
-};
-
const mp_obj_type_t mp_type_stringio = {
{ &mp_type_type },
.name = MP_QSTR_StringIO,
@@ -262,6 ... |
install: create SRPD_PLUGINS_PATH directory
Sysrepo should install the directories it needs, especially when they
are by default in /usr which can be read-only.
Also the directory should be owned by sysrepo packages. | @@ -390,6 +390,7 @@ install(TARGETS sysrepoctl sysrepocfg sysrepo-plugind DESTINATION ${CMAKE_INSTAL
install(FILES ${PROJECT_SOURCE_DIR}/src/executables/sysrepoctl.1 ${PROJECT_SOURCE_DIR}/src/executables/sysrepocfg.1
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
install(FILES ${PROJECT_SOURCE_DIR}/src/executables/sysrepo-p... |
at_client: Increase stack size
Got stack overflow in test automation for Espressif so we need a little
more stack. | @@ -339,7 +339,7 @@ extern "C" {
* which seems to require around twice the stack of NRF52
* or STM32F4.
*/
-# define U_AT_CLIENT_CALLBACK_TASK_STACK_SIZE_BYTES 1536
+# define U_AT_CLIENT_CALLBACK_TASK_STACK_SIZE_BYTES 2048
#endif
#ifndef U_AT_CLIENT_CALLBACK_TASK_PRIORITY
|
Remove references from bootstrap-t4p4s.sh | @@ -17,10 +17,6 @@ sudo apt-get update && sudo apt-get -y install g++ git automake libtool libgc-de
WAITPROC_APTGET="$!"
[ $PARALLEL_INSTALL -ne 0 ] || wait "$WAITPROC_APTGET"
-git clone --recursive https://github.com/p4lang/p4-hlir &
-WAITPROC_P4HLIR="$!"
-[ $PARALLEL_INSTALL -ne 0 ] || wait "$WAITPROC_P4HLIR"
-
wget ... |
Pend one alert in case wrong EXT_EARLY_DATA length | @@ -2542,9 +2542,18 @@ static int ssl_tls13_parse_new_session_ticket_exts( mbedtls_ssl_context *ssl,
{
case MBEDTLS_TLS_EXT_EARLY_DATA:
MBEDTLS_SSL_DEBUG_MSG( 4, ( "early_data extension received" ) );
- if( extension_data_len == 4 && ssl->session != NULL )
+ if( extension_data_len != 4 )
+ {
+ MBEDTLS_SSL_PEND_FATAL_AL... |
zephyr: add GPIO enum GPIO_USB_CX_DISHCARGE
It's missing so add the enum.
TEST=zmake testall
BRANCH=none
Tested-by: Eric Yilun Lin | @@ -86,6 +86,7 @@ properties:
- GPIO_USB_C0_BC12_INT_ODL
- GPIO_USB_C0_C2_TCPC_INT_ODL
- GPIO_USB_C0_C2_TCPC_RST_ODL
+ - GPIO_USB_C0_DISCHARGE
- GPIO_USB_C0_DP_HPD
- GPIO_USB_C0_OC_ODL
- GPIO_USB_C0_PD_INT_ODL
@@ -94,6 +95,7 @@ properties:
- GPIO_USB_C0_TCPC_INT_ODL
- GPIO_USB_C0_TCPC_RST_L
- GPIO_USB_C1_BC12_INT_ODL
+... |
refactor: replace every snprintf used for creating JSON with json_inject | @@ -92,11 +92,18 @@ ws_send_payload(dati *ws, char payload[])
static void
ws_send_resume(dati *ws)
{
- char fmt_payload[] = \
- "{\"op\":6,\"d\":{\"token\":\"%s\",\"session_id\":\"%s\",\"seq\":%d}}";
char payload[MAX_PAYLOAD_LEN];
- int ret = snprintf(payload, MAX_PAYLOAD_LEN, fmt_payload,
- ws->p_client->settings.toke... |
Ignore invalid socket ID when updating properties
This update sets the socket ID only when the call to sysfs succeeds. | @@ -332,12 +332,12 @@ fpgaUpdateProperties(fpga_token token, fpga_properties prop)
_iprop.function = (uint8_t) f;
SET_FIELD_VALID(&_iprop, FPGA_PROPERTY_FUNCTION);
+ // only set socket id if we have it on sysfs
result = sysfs_get_socket_id(device_id, &_iprop.socket_id);
- if (result)
- return result;
-
+ if (0 == resul... |
Disallow change EVP_CIPHER properties once set | @@ -54,18 +54,27 @@ void EVP_CIPHER_meth_free(EVP_CIPHER *cipher)
int EVP_CIPHER_meth_set_iv_length(EVP_CIPHER *cipher, int iv_len)
{
+ if (cipher->iv_len != 0)
+ return 0;
+
cipher->iv_len = iv_len;
return 1;
}
int EVP_CIPHER_meth_set_flags(EVP_CIPHER *cipher, unsigned long flags)
{
+ if (cipher->flags != 0)
+ return ... |
centos: revert java path | @@ -107,7 +107,7 @@ RUN useradd \
RUN cd /tmp && wget https://services.gradle.org/distributions/gradle-7.4-bin.zip && unzip gradle-7.4-bin.zip && rm gradle-7.4-bin.zip && mv gradle-7.4 /opt/gradle
RUN alternatives --auto java && alternatives --auto javac
ENV PATH="${PATH}:/opt/gradle/bin" \
- JAVA_HOME="/usr/lib/jvm/ja... |
invalidation_watch_file isn't needed as this job is now performed by the plugin invalidation factory | @@ -273,24 +273,6 @@ typedef struct clap_preset_discovery_indexer {
bool(CLAP_ABI *declare_soundpack)(const struct clap_preset_discovery_indexer *indexer,
const clap_preset_discovery_soundpack_t *soundpack);
- // Sets the path to a watch file.
- // Whenever the given file is "touched" (its modification time is updated)... |
6LoWPAN: Put parentheses around macro parameters | #define LOG_MODULE "6LoWPAN"
#define LOG_LEVEL LOG_LEVEL_6LOWPAN
-#define GET16(ptr,index) (((uint16_t)((ptr)[index] << 8)) | ((ptr)[(index) + 1]))
+#define GET16(ptr,index) (((uint16_t)((ptr)[(index)] << 8)) | ((ptr)[(index) + 1]))
#define SET16(ptr,index,value) do { \
- (ptr)[index] = ((value) >> 8) & 0xff; \
- (ptr)... |
[core] simplify parsing hdr key whitespace then : | @@ -580,7 +580,7 @@ static int parse_single_header(server *srv, connection *con, parse_header_state
int http_request_parse(server *srv, connection *con) {
char *uri = NULL, *proto = NULL, *method = NULL;
- int is_key = 1, key_len = 0, is_ws_after_key = 0;
+ int is_key = 1, key_len = 0;
char *value = NULL;
int line = 0;... |
Destroy ecdh_psa_privkey on failure | @@ -3181,6 +3181,8 @@ curve_matching_done:
{
ret = psa_ssl_status_to_mbedtls( status );
MBEDTLS_SSL_DEBUG_RET( 1, "psa_export_public_key", ret );
+ (void) psa_destroy_key( handshake->ecdh_psa_privkey );
+ handshake->ecdh_psa_privkey = MBEDTLS_SVC_KEY_ID_INIT;
return( ret );
}
@@ -3919,6 +3921,8 @@ static int ssl_parse_... |
inertial_updates: update raw IMU descriptions for clarity | @@ -21,7 +21,8 @@ definitions:
short_desc: Raw IMU data
desc: |
Raw data from the Inertial Measurement Unit, containing accelerometer and
- gyroscope readings.
+ gyroscope readings. The sense of the measurements are to be aligned with
+ the indications on the device itself.
fields:
- tow:
type: u32
@@ -36,22 +37,22 @@ ... |
libcupsfilters: Fixed typo in PPD-generator's output-bin option support. | @@ -1211,7 +1211,7 @@ ppdCreateFromIPP(char *buffer, /* I - Filename buffer */
else
strlcpy(ppdname, "Unknown", sizeof(ppdname));
- if ((attr = ippFindAttribute(response, "outout-bin-supported", IPP_TAG_ZERO)) != NULL && (count = ippGetCount(attr)) > 1)
+ if ((attr = ippFindAttribute(response, "output-bin-supported", I... |
NAT: interface fib fix | @@ -2178,6 +2178,7 @@ snat_update_outside_fib (u32 sw_if_index, u32 new_fib_index,
nat_outside_fib_t *outside_fib;
snat_interface_t *i;
u8 is_add = 1;
+ u8 match = 0;
if (new_fib_index == old_fib_index)
return;
@@ -2185,14 +2186,21 @@ snat_update_outside_fib (u32 sw_if_index, u32 new_fib_index,
if (!vec_len (sm->outsid... |
Tools: Set key 'file' for grib_get | @@ -204,6 +204,11 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
}
}
+ if (options->current_infile && options->current_infile->name) {
+ size = strlen(options->current_infile->name);
+ grib_set_string(h, "file", options->current_infile->name, &size);
+ }
+
return 0;
}
|
chip/npcx/rom_chip.h: Format with clang-format
BRANCH=none
TEST=none | @@ -45,8 +45,8 @@ enum API_RETURN_STATUS_T {
#define ADDR_DOWNLOAD_FROM_FLASH (*(volatile uint32_t *)0x40)
#define download_from_flash(src_offset, dest_addr, size, sign, exe_addr, \
status) \
- (((download_from_flash_ptr) ADDR_DOWNLOAD_FROM_FLASH) \
- (src_offset, dest_addr, size, sign, exe_addr, status))
+ (((download... |
dockerfile: remove cmd used for debugging | @@ -103,6 +103,3 @@ USER ${JENKINS_USERID}
# Set git config
RUN git config --global user.email 'Jenkins <autobuilder@libelektra.org>' \
&& git config --global user.name 'Jenkins'
-
-# TODO: remove next line
-CMD tail -f /dev/null
|
display: use ATOMIC_GET when accessing hfuzz->feedback.feedbackMap | @@ -251,7 +251,7 @@ static void display_displayLocked(honggfuzz_t* hfuzz) {
uint64_t softCntCmp = ATOMIC_GET(hfuzz->linux.hwCnts.softCntCmp);
display_put(" edge: " ESC_BOLD "%" _HF_NONMON_SEP PRIu64 ESC_RESET "/" ESC_BOLD
"%" _HF_NONMON_SEP PRIu64 ESC_RESET,
- softCntEdge, hfuzz->feedback.feedbackMap->guardNb);
+ softC... |
f16c: use __ARM_FEATURE_FP16_VECTOR_ARITHMETIC to detect Arm support | @@ -59,7 +59,7 @@ simde_mm_cvtps_ph(simde__m128 a, const int sae) {
HEDLEY_STATIC_CAST(void, sae);
- #if defined(SIMDE_ARM_NEON_A32V7_NATIVE) && (__ARM_FP & 2)
+ #if defined(SIMDE_ARM_NEON_A32V7_NATIVE) && defined(__ARM_FEATURE_FP16_VECTOR_ARITHMETIC)
r_.neon_f16 = vcombine_f16(vcvt_f16_f32(a_.neon_f32), vdup_n_f16(SIM... |
add missing external function | @@ -81,6 +81,8 @@ register_functions(struct ubpf_vm *vm) {
ubpf_register(vm, 0x2a, "my_htons", my_htons);
ubpf_register(vm, 0x2b, "my_ntohs", my_ntohs);
+ ubpf_register(vm, 0x2c, "strncmp", strncmp);
+
// logging func
ubpf_register(vm, 0x2d, "picoquic_has_booked_plugin_frames", picoquic_has_booked_plugin_frames);
|
[io] update cf info | @@ -564,11 +564,12 @@ class MechanicsHdf5(object):
self._cf_data = data(self._data, 'cf', 26,
use_compression=self._use_compression)
if self._mode == 'w':
- self._cf_data.attrs['info'] = 'time, mu, contact point A ,'
- self._cf_data.attrs['info'] += 'contact point B, contact normal, '
- self._cf_data.attrs['info'] += '... |
Getting some system info | #import "api_generator/iphone/CMethodResult.h"
#import "Rhodes.h"
#import "sys/utsname.h"
-#import "mach/mach.h"
#include "common/RhoConf.h"
#include "logging/RhoLog.h"
@@ -388,21 +387,23 @@ namespace rho {
// retVal.put(key,value);
+ NSString *value = [[UIDevice currentDevice] localizedModel];
+ retVal.put("Device Loc... |
footnote degub arg | #define TEST_DISTANCE 0.300 // meter
#define TEST_RADIAN 3.14 // 180 degree
-#define DEBUG
+// #define DEBUG
#define DEBUG_SERIAL SerialBT2
// Callback function prototypes
|
Fix LMS not checking RNG function return value | @@ -545,9 +545,13 @@ int mbedtls_lms_generate_private_key( mbedtls_lms_private_t *ctx,
ctx->params.type = type;
ctx->params.otstype = otstype;
- f_rng( p_rng,
+ ret = f_rng( p_rng,
ctx->params.I_key_identifier,
MBEDTLS_LMOTS_I_KEY_ID_LEN );
+ if( ret != 0 )
+ {
+ goto exit;
+ }
ctx->ots_private_keys = mbedtls_calloc( (... |
bitwise tests are completed | @@ -277,6 +277,7 @@ else:
#--- Complete ---
"i32", "i64", "stack", "fac",
"f32_cmp", "f64_cmp",
+ "f32_bitwise", "f64_bitwise",
"f32", "f64",
"float_misc",
#--- In progress ---
|
Mention missing breaking change in ThemisPP
We mention this PR as a minor refactoring in Themis Core, but in fact it
includes a breaking change in ThemisPP as well. This change affects all
users of Secure Session and breaks compilation. Let's mention it in the
changelog to simplify migration. | @@ -185,6 +185,22 @@ _Code:_
[#576](https://github.com/cossacklabs/themis/pull/576)).
- Updated test suite to test C++14 and C++17 (in addition to C++11 and C++03) ([#572](https://github.com/cossacklabs/themis/pull/572)).
+ - **Breaking changes**
+
+ - `get_pub_key_by_id()` method of `secure_session_callback_interface_... |
Add 'ya tool tvmknife'
Add 'ya tool tvmknife'
([arc::pullid] 3cfad4cd-aea83eb9-297940c3-71f16ecf) | "godoc": { "description": "Run godoc tool" },
"gofmt": { "description": "Run gofmt tool" },
"yo": { "description": "Tool for managing vendor/ directory" },
+ "tvmknife": { "description": "Tool for debugging and testing with TVM tickets" },
"golangci-lint": { "description": "Linters Runner for Go" }
},
"toolchain": {
{"... |
Build: Speed up HomeBrew Deployment | @@ -11,7 +11,7 @@ matrix:
name: "Check Shell Scripts"
script:
- - HOMEBREW_NO_AUTO_UPDATE=1 brew install shellcheck
+ - HOMEBREW_NO_INSTALL_CLEANUP=1 HOMEBREW_NO_AUTO_UPDATE=1 brew install shellcheck
- find . \( -name "*.tool" -o -name "*.command" -o -name "*.sh" \) -exec shellcheck --severity=info {} \;
- os: osx
@@ -... |
decisions: allow backlinks | @@ -7,6 +7,13 @@ Substantial decisions, however, must be made in a transparent and participative
The main purpose of the decision process is to get a common understanding of the problems and the impacts of possible solutions.
+## Terminology
+
+- `Decision`:
+ A text file which contains the content as [explained here](... |
bn/asm/rsaz-avx2.pl: refine Win64 SE handler. | @@ -827,6 +827,7 @@ $code.=<<___;
mov %rbp, %rax
___
$code.=<<___ if ($win64);
+.Lsqr_1024_in_tail:
movaps -0xd8(%rax),%xmm6
movaps -0xc8(%rax),%xmm7
movaps -0xb8(%rax),%xmm8
@@ -1460,6 +1461,7 @@ $code.=<<___;
mov %rbp, %rax
___
$code.=<<___ if ($win64);
+.Lmul_1024_in_tail:
movaps -0xd8(%rax),%xmm6
movaps -0xc8(%rax)... |
roller: simplify handling of /predict timer | :: next-batch: when then next l2 batch will be sent
:: pre: predicted l2 state
:: own: ownership of azimuth points
- :: derive-p: flag (derive predicted state)
- :: derive-o: flag (derive ownership state)
+ :: derive: flag (derive predicted/ownership state)
::
pending=(list pend-tx)
sending=(map l1-tx-pointer sending-t... |
Update src/utils/registryConnector.c | @@ -23,7 +23,7 @@ void getRegistryEntry(const char* key, const char* value) {
char* getRegistryValue(const char* env_name) {
char value_buffer[8192];
getRegistryEntry(env_name, value_buffer);
- if (strcmp(value_buffer, "") == 0) {
+ if (!strValid(value_buffer)) {
return NULL;
}
char* value = oidc_strcopy(value_buffer);... |
groups: fix issue with wrapping urls in notes | @@ -2,9 +2,7 @@ import { Text } from '@tlon/indigo-react';
import styled from 'styled-components';
export const TruncatedText = styled(Text)`
- white-space: pre;
- text-overflow: ellipsis;
- overflow: hidden;
min-width: 0;
+ overflow-wrap: anywhere;
`;
|
Updater: Add sourceforge nightly | @@ -256,7 +256,8 @@ ULONG64 ParseVersionString(
}
BOOLEAN QueryUpdateData(
- _Inout_ PPH_UPDATER_CONTEXT Context
+ _Inout_ PPH_UPDATER_CONTEXT Context,
+ _In_ BOOLEAN UseSourceForge
)
{
BOOLEAN success = FALSE;
@@ -270,6 +271,31 @@ BOOLEAN QueryUpdateData(
goto CleanupExit;
}
+ if (UseSourceForge)
+ {
+ if (!PhHttpSock... |
find-doc-nits: Minor improvements of help and diagnostic output | @@ -45,7 +45,7 @@ our($opt_c);
sub help {
print <<EOF;
Find small errors (nits) in documentation. Options:
- -c List undocumented commands and options
+ -c List undocumented commands, undocumented options and unimplemented options.
-d Detailed list of undocumented (implies -u)
-e Detailed list of new undocumented (impl... |
Fix Coverity CID:1453685 'unreachable code' in aes_xts code. | @@ -176,7 +176,6 @@ static int aes_xts_cipher(void *vctx, unsigned char *out, size_t *outl,
else if (CRYPTO_xts128_encrypt(&ctx->xts, ctx->base.iv, in, out, inl,
ctx->base.enc))
return 0;
- return 1;
*outl = inl;
return 1;
@@ -198,7 +197,6 @@ static int aes_xts_stream_update(void *vctx, unsigned char *out, size_t *outl... |
sched: mark threads as idle only once preemption completes
these threads are effectively unavailable until they are descheduled,
this reduces the chance of a wakeup failing in ksched | @@ -38,6 +38,7 @@ int sched_siblings_nr;
static int nr_guaranteed;
struct core_state {
+ struct thread *last_th; /* recently run thread, waiting for preemption to complete */
struct thread *pending_th; /* a thread waiting run */
struct thread *cur_th; /* the currently running thread */
unsigned int idle:1; /* is the co... |
gkhash: fix use after free
Do not free immediately in case tpl_unpack() gets called multiple times | @@ -1168,8 +1168,8 @@ restore_global_si32 (khash_t (si32) * hash, const char *fn) {
tpl_load (tn, TPL_FILE, fn);
while (tpl_unpack (tn, 1) > 0) {
ins_si32 (hash, key, val);
- free (key);
}
+ free (key);
tpl_free (tn);
}
@@ -1284,9 +1284,9 @@ restore_si32 (GSMetric metric, const char *path, int module) {
while (tpl_unpa... |
margin styling, spacing in general | |= [t=knot con=topicful:collections]
;* ?: comm.config
;* ?: xeno.config
- ;li.forum
+ ;li.forum.mb-8
;div.text-mono
- {(trip t)}
+ ; {(trip t)}
==
;div.h3.mt-0
;a(href "/~~/collections/{(trip -.s.bem.gas)}/{(trip t)}"): {(trip tit.info.con)}
==
- ;div.who
+ ;div.who.text-mono.text-600
; {(trip (scot %p who.info.con))}... |
Code not working | #include "de_web_plugin.h"
#include "de_web_plugin_private.h"
+//Used somewhere else in the code
+const QDateTime epoch = QDateTime(QDate(2000, 1, 1), QTime(0, 0), Qt::UTC);
+
+// Used only localy
const QDateTime J2000_epoch = QDateTime(QDate(2000, 1, 1), QTime(0, 0), Qt::UTC);
const QDateTime Unix_epoch = QDateTime(QD... |
Support for more than 15 keyword arguments | @@ -87,10 +87,12 @@ static void send_by_name( struct VM *vm, mrbc_sym sym_id, int a, int c )
// Convert keyword argument to hash.
if( karg ) {
+ narg++;
+ if( karg != CALL_MAXARGS ) {
mrbc_value h = mrbc_hash_new( vm, karg );
if( !h.hash ) return; // ENOMEM
- mrbc_value *r1 = recv + narg + 1;
+ mrbc_value *r1 = recv + ... |
trace: add filter events on last chunk trace when using limits. | @@ -146,7 +146,7 @@ void flb_filter_do(struct flb_input_chunk *ic,
/* reset data content length */
#ifdef FLB_TRACE
- if (ic->in->trace_ctxt) flb_trace_chunk_filter(ic->trace, (void *)f_ins, "", 0);
+ if (ic->trace) flb_trace_chunk_filter(ic->trace, (void *)f_ins, "", 0);
#endif // FLB_TRACE
@@ -204,7 +204,7 @@ void fl... |
SOVERSION bump to version 2.26.6 | @@ -66,7 +66,7 @@ set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_
# set version of the library
set(LIBYANG_MAJOR_SOVERSION 2)
set(LIBYANG_MINOR_SOVERSION 26)
-set(LIBYANG_MICRO_SOVERSION 5)
+set(LIBYANG_MICRO_SOVERSION 6)
set(LIBYANG_SOVERSION_FULL ${LIBYANG_MAJOR_SOVERSION}.${LIBYANG_M... |
Compute passes release their shaders properly;
Active shader was only getting released for render passes. | @@ -5509,7 +5509,7 @@ static void releasePassResources(void) {
lovrRelease(access->texture, lovrTextureDestroy);
}
- if (pass->info.type == PASS_RENDER) {
+ if (pass->info.type == PASS_RENDER || pass->info.type == PASS_COMPUTE) {
for (size_t j = 0; j <= pass->pipelineIndex; j++) {
Pipeline* pipeline = pass->pipeline - ... |
Check for ipcRenderer to prevent unit tests failing | @@ -80,6 +80,7 @@ const plugins = {
}, {})
};
+if (ipcRenderer) {
ipcRenderer.send("set-menu-plugins", plugins.menu);
chokidar
@@ -155,6 +156,7 @@ chokidar
pluginEmitter.emit("remove-menu", { id: pluginId });
ipcRenderer.send("set-menu-plugins", plugins.menu);
});
+}
export default plugins;
export { pluginEmitter };
|
BuildTools: Fix cleanup path typo | @@ -244,8 +244,8 @@ public static void CleanupBuildEnvironment()
{
string sourceFile = BuildOutputFolder + file;
- if (File.Exists(file))
- File.Delete(file);
+ if (File.Exists(sourceFile))
+ File.Delete(sourceFile);
}
if (Directory.Exists("sdk"))
|
Add further array bounds checks to bark_noise_hybridmp.
Make it clear to local analysis that no out-of-bounds array
accesses are possible here.
Follow-up to CVE-2018-10393 and CVE-2017-14160. | @@ -599,11 +599,11 @@ static void bark_noise_hybridmp(int n,const long *b,
XY[i] = tXY;
}
- for (i = 0, x = 0.f;; i++, x += 1.f) {
+ for (i = 0, x = 0.f; i < n; i++, x += 1.f) {
lo = b[i] >> 16;
hi = b[i] & 0xffff;
- if( lo>=0 ) break;
+ if( lo>=0 || -lo>=n ) break;
if( hi>=n ) break;
tN = N[hi] + N[-lo];
@@ -616,16 +6... |
linkvoiceapp:disable scan sd card | @@ -135,14 +135,14 @@ void xplayer_run(void)
}
aos_register_event_filter(EV_KEY, xplayer_key_process, music_player->bufque);
- LOG("show music list...");
- if (xPlayerShowMusicList() == -1) {
- krhino_buf_queue_dyn_del(&music_player->bufque);
- xPlayerDestroy();
- krhino_task_dyn_del(NULL);
- LOG("xplaer thread exit...... |
Fixed bugs revealed by LGTM.com (on port to CUPS)
This especially revealed that on selecting the final setting for the
color mode/quality presets only 2 of the intended 3 passes were done. | @@ -2568,8 +2568,6 @@ ppdCacheAssignPresets(ppd_file_t *ppd,
// No or small change -> Normal quality
if (m == 1)
properties->sets_normal += res_factor * 4;
- else if (m > 1 && m < 2)
- properties->sets_normal += res_factor * 2;
// At least double the pixels -> High quality
else if (m == 2)
properties->sets_high += res_... |
lib: Update tcmulib_command_complete comments | @@ -111,7 +111,8 @@ struct tcmulib_cmd *tcmulib_get_next_command(struct tcmu_device *dev);
* Mark the command as complete.
* Must be called before get_next_command() is called again.
*
- * result is scsi status, or TCMU_STS_NOT_HANDLED or TCMU_ASYNC_HANDLED.
+ * result is TCMU_STS value from libtcmu_common.h. If TCMU_S... |
api: fix dead client scan heap issue
Type: fix
On multiworker setup when an app client dies, the
vec_reset_length call fails the assert in
clib_mem_is_heap_object. Same thing might happen for
the clib_warnings | @@ -666,14 +666,18 @@ vl_mem_api_dead_client_scan (api_main_t * am, vl_shmem_hdr_t * shm, f64 now)
vec_delete (am->vlib_private_rps, 1, i);
goto found;
}
+ svm_pop_heap (oldheap);
clib_warning ("private rp %llx AWOL", dead_rp);
+ oldheap = svm_push_data_heap (svm);
found:
/* Kill it, accounting for the memfd header pag... |
Added "far" field to BIN resource and replaced FileWriter by StringBuffer (faster and safer) | @@ -2,7 +2,6 @@ package sgdk.rescomp.resource;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
-import java.io.PrintWriter;
import java.util.Arrays;
import sgdk.rescomp.Resource;
@@ -18,10 +17,11 @@ public class Bin extends Resource
public final Compression wantedCompression;
public PackedData packedD... |
board/bobba/board.h: Format with clang-format
BRANCH=none
TEST=none | #define CONFIG_ACCELGYRO_ICM426XX_INT_EVENT \
TASK_EVENT_MOTION_SENSOR_INTERRUPT(BASE_ACCEL)
-
-#define CONFIG_SYNC_INT_EVENT \
- TASK_EVENT_MOTION_SENSOR_INTERRUPT(VSYNC)
+#define CONFIG_SYNC_INT_EVENT TASK_EVENT_MOTION_SENSOR_INTERRUPT(VSYNC)
#define CONFIG_LID_ANGLE
#define CONFIG_LID_ANGLE_UPDATE
@@ -111,19 +109,10... |
fix(docs): Consistent naming in Mo-Tog example.
Updated all references in example to conform to Hold action-Tap action wording order. | @@ -276,19 +276,19 @@ A popular method of implementing Autoshift in ZMK involves a C-preprocessor macr
</TabItem>
-<TabItem value="tog_mo">
+<TabItem value="mo_tog">
-This hold-tap example implements a [toggle-layer](layers.md/#toggle-layer) when the keybind is tapped and a [momentary-layer](layers.md/#momentary-layer)... |
refactor: add libdiscord target so we can just build the library | @@ -62,7 +62,7 @@ all : mkdir common orka discord github bot
common: mkdir $(COMMON_OBJS)
orka: mkdir $(ORKA_OBJS)
-discord: mkdir $(DISCORD_OBJS) $(LIBDISCORD)
+discord: mkdir $(DISCORD_OBJS) libdiscord
github: mkdir $(GITHUB_OBJS)
bot: $(BOT_EXES) #@todo should we split by categories (bot_discord, bot_github, etc)?
@... |
sway-output.5: improve display of parameter
Since "width" and "height" are separate parameters, show them as such. | @@ -24,7 +24,7 @@ must be separated by one space. For example:
# COMMANDS
-*output* <name> mode|resolution|res [--custom] <WIDTHxHEIGHT>[@<RATE>Hz]
+*output* <name> mode|resolution|res [--custom] <width>x<height>[@<rate>Hz]
Configures the specified output to use the given mode. Modes are a
combination of width and heig... |
Silence some more msvc errors. | @@ -243,11 +243,11 @@ static int escape1(DstParser *p, DstParseState *state, uint8_t c) {
static int stringend(DstParser *p, DstParseState *state) {
Dst ret;
if (state->flags & PFLAG_BUFFER) {
- DstBuffer *b = dst_buffer(p->bufcount);
- dst_buffer_push_bytes(b, p->buf, p->bufcount);
+ DstBuffer *b = dst_buffer((int32_t... |
automation: Minor fix for unknown platform | @@ -189,7 +189,7 @@ def instance_command(ctx, instance_str, cmd):
check_return_code(return_code)
else:
- raise Exit(f"Unsupported platform: '{desc}'")
+ raise Exit(f"Unsupported platform: '{platform}'")
@task()
|
openvr: rm state.rift;
Yay actions? | @@ -85,7 +85,6 @@ static struct {
RenderModel_TextureMap_t* deviceTextures[16];
Canvas* canvas;
vec_float_t boundsGeometry;
- bool rift;
float clipNear;
float clipFar;
float offset;
@@ -208,8 +207,6 @@ static bool openvr_init(float offset, int msaa) {
state.input->GetActionHandle("/actions/lovr/out/leftHandBZZ", &state... |
Useless conf != NULL test
check is already made 10 line above.
clean commented code | @@ -442,19 +442,13 @@ end_of_options:
&& (section = lookup_conf(conf, BASE_SECTION, ENV_DEFAULT_CA)) == NULL)
goto end;
- if (conf != NULL) {
p = NCONF_get_string(conf, NULL, "oid_file");
if (p == NULL)
ERR_clear_error();
if (p != NULL) {
- BIO *oid_bio;
+ BIO *oid_bio = BIO_new_file(p, "r");
- oid_bio = BIO_new_file(p... |
Bad copy paste... | @@ -9,7 +9,7 @@ static CLAP_CONSTEXPR const char CLAP_EXT_STATE[] = "clap.state";
extern "C" {
#endif
-typedef struct clap_plugin_state {
+typedef struct clap_plugin_state_context {
// Saves the plugin state into stream.
// Returns true if the state was correctly saved.
// [main-thread]
|
Set policy only if CMake version >= 3.21.0. | @@ -993,7 +993,9 @@ cmake_policy(SET CMP0078 NEW)
# Although this script already fixes the library prefix of the C# binding (see
# ``tinyspline_add_swig_library``), we enable the new behavior as the old one
# will be removed in future releases of CMake.
+if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.21.0")
cmake_policy(... |
Using #define defaults instead of hard-coded numbers | @@ -1321,15 +1321,15 @@ static void lv_cpicker_reset_hsv_if_double_clicked(lv_obj_t * cpicker,
switch(ext->color_mode)
{
case LV_CPICKER_COLOR_MODE_HUE:
- ext->hue = 0;
+ ext->hue = LV_CPICKER_DEF_HUE;
ext->prev_hue = ext->hue;
break;
case LV_CPICKER_COLOR_MODE_SATURATION:
- ext->saturation = 100;
+ ext->saturation = L... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.