message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
Enable Linux Signing Preview | @@ -58,6 +58,8 @@ extends:
break: true # always break the build on policheck issues. You can disable it by setting to 'false'
suppression:
suppressionFile: $(Build.SourcesDirectory)\.azure\openssl.gdnsuppress
+ featureFlags:
+ linuxEsrpSigningPreview: true
stages:
- stage: build_winkernel
|
Fix init funcion symtab linking | @@ -649,7 +649,6 @@ geninit(void)
name = mkname(Zloc, "__init__");
decl = mkdecl(Zloc, name, mktyvar(Zloc));
block = mkblock(Zloc, mkstab(0));
- block->block.scope->super = file->file.globls;
tyvoid = mktype(Zloc, Tyvoid);
tyvoidfn = mktyfunc(Zloc, NULL, 0, tyvoid);
@@ -661,7 +660,6 @@ geninit(void)
callinit(block, fil... |
core/cortex-m/include/fpu.h: Format with clang-format
BRANCH=none
TEST=none | static inline float sqrtf(float v)
{
float root;
- asm volatile(
- "fsqrts %0, %1"
- : "=w" (root)
- : "w" (v)
- );
+ asm volatile("fsqrts %0, %1" : "=w"(root) : "w"(v));
return root;
}
static inline float fabsf(float v)
{
float root;
- asm volatile(
- "fabss %0, %1"
- : "=w" (root)
- : "w" (v)
- );
+ asm volatile("fab... |
Added a note for sceMotionGetBasicOrientation proper usage. | @@ -124,6 +124,7 @@ int sceMotionGetDeviceLocation(SceMotionDeviceLocation *deviceLocation);
* @note - Now flipping the device upwards, taking hold of the right joystick's side, until it forms a 90 degree angle to the surface will result in the X part of the vector being 1 instead
* @note - Both examples would result i... |
show weakcandidate in --help | @@ -279,6 +279,8 @@ static int channelscanlist[256] =
static uint8_t myessid[] = { "home" };
+static const char weakcandidatedefault[] = { "12345678" };
+
static char interfaceprotocol[IFNAMSIZ];
static char rssi;
@@ -7309,7 +7311,6 @@ static int c;
static int gpiobasemem = 0;
static unsigned long opensslversion;
stati... |
jenkins: remove ini specific code | .\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
-.TH "ELEKTRA\-PLUGINS" "7" "August 2020" "" ""
+.TH "ELEKTRA\-PLUGINS" "7" "September 2020" "" ""
.
.SH "NAME"
\fBelektra\-plugins\fR \- plugins overview
@@ -108,9 +108,6 @@ Read and write everything a KeySet might contain:
dump \fIdump/\f... |
Fix token calculation: Set parentKey namespace already for kdbGet() instead for token calculation. | @@ -239,27 +239,28 @@ kdb_boolean_t checkSpecToken (KDB * const kdb, Key * parentKey, const char * tok
{
KeySet * const specificationKs = ksNew (0, KS_END);
- const int kdbGetResult = kdbGet (kdb, specificationKs, parentKey);
+ Key * parentKeySpecNamespace = keyDup (parentKey, KEY_CP_ALL);
+ // For token calculation of... |
fix x86 issue | @@ -1593,7 +1593,7 @@ int picoquic_prepare_packet_0rtt(picoquic_cnx_t* cnx, picoquic_path_t * path_x,
send_buffer_max = 0;
}
else {
- send_buffer_max = (size_t)PICOQUIC_DEFAULT_0RTT_WINDOW - path_x->bytes_in_transit;
+ send_buffer_max = (size_t)PICOQUIC_DEFAULT_0RTT_WINDOW - (size_t)path_x->bytes_in_transit;
}
}
bytes_... |
Fix typo in none SIMD file | @@ -150,7 +150,7 @@ struct vfloat4
/**
* @brief Return a swizzled float 2.
*/
- template <int l0, int l1> ASTCENC_SIMD_INLINE float2 swz() const
+ template <int l0, int l1> ASTCENC_SIMD_INLINE vfloat4 swz() const
{
return vfloat4(lane<l0>(), lane<l1>(), 0.0f, 0.0f);
}
|
Fix str2wire ipv6hint like ipv4hint was fixed | @@ -1087,7 +1087,7 @@ static int
sldns_str2wire_svcbparam_ipv6hint(const char* val, uint8_t* rd, size_t* rd_len)
{
int count;
- char ip_str[INET_ADDRSTRLEN+1];
+ char ip_str[INET6_ADDRSTRLEN+1];
char *next_ip_str;
uint32_t *ip_wire_dst;
size_t i;
@@ -1113,10 +1113,11 @@ sldns_str2wire_svcbparam_ipv6hint(const char* val... |
add clang format version | @@ -365,6 +365,7 @@ jobs:
# Validate all the files are formatted correctly according to the .clang-format file.
- bash: |
# Run clang-format recursively on each source and header file within the repo.
+ clang-format --version
find . \( -iname '*.h' -o -iname '*.c' \) -exec clang-format -i {} \;
git status --untracked-f... |
Swap read/write word data. | @@ -85,19 +85,21 @@ int cambus_readw(uint8_t slv_addr, uint8_t reg_addr, uint16_t *reg_data)
int ret=0;
__disable_irq();
if (HAL_I2C_Mem_Read(&I2CHandle, slv_addr, reg_addr,
- I2C_MEMADD_SIZE_16BIT, (uint8_t*) reg_data, 2, I2C_TIMEOUT) != HAL_OK) {
+ I2C_MEMADD_SIZE_8BIT, (uint8_t*) reg_data, 2, I2C_TIMEOUT) != HAL_OK)... |
Fix use of uninitialized linked list | @@ -141,6 +141,9 @@ void lv_init(void)
_lv_ll_init(&LV_GC_ROOT(_lv_obj_style_trans_ll), sizeof(lv_style_trans_t));
+ _lv_ll_init(&LV_GC_ROOT(_lv_disp_ll), sizeof(lv_disp_t));
+ _lv_ll_init(&LV_GC_ROOT(_lv_indev_ll), sizeof(lv_indev_t));
+
lv_theme_t * th = LV_THEME_DEFAULT_INIT(LV_THEME_DEFAULT_COLOR_PRIMARY, LV_THEME_... |
Fix wxWidgets detection in Windows build action | @@ -55,7 +55,7 @@ jobs:
- name: Configure CMake (windows)
if: matrix.os == 'windows-latest'
- run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_EVB7COM=ON -DCMAKE_PREFIX_PATH=${{env.INSTALL_PREFIX}} -DwxWidgets_LIB_DIR=${{env.WIN_WXWIDGETS_LIBS_DIR}} -DwxWidgets_ROOT_DIR=${{githu... |
unsigned long -> size_t | @@ -523,7 +523,7 @@ void processStatTable(const char* statTablePath, RhoFsSetupMode setupMode, bool
strTime.assign(pos, ptr-pos);
int type;
- unsigned long filesize;
+ size_t filesize = 0;
unsigned long mtime;
if(strType.compare("file") == 0)
@@ -548,7 +548,7 @@ void processStatTable(const char* statTablePath, RhoFsSet... |
invalidate axis-aligned boundng box util | @@ -153,4 +153,16 @@ glm_aabb_frustum(vec3 box[2], vec4 planes[6]) {
return true;
}
+/*!
+ * @brief invalidate AABB min and max values
+ *
+ * @param[in, out] box bounding box
+ */
+CGLM_INLINE
+void
+glm_aabb_invalidate(vec3 box[2]) {
+ glm_vec_broadcast(FLT_MAX, box[0]);
+ glm_vec_broadcast(-FLT_MAX, box[1]);
+}
+
#e... |
mbedtls: Fix leak of 12 bytes by each key exchange.
Correctly free ducts by calling _libssh2_mbedtls_bignum_free() in dtor. | @@ -688,7 +688,7 @@ _libssh2_dh_secret(_libssh2_dh_ctx *dhctx, _libssh2_bn *secret,
void
_libssh2_dh_dtor(_libssh2_dh_ctx *dhctx)
{
- mbedtls_mpi_free(*dhctx);
+ _libssh2_mbedtls_bignum_free(*dhctx);
*dhctx = NULL;
}
|
Ensure WS is stopped on SIGINT if running as --real-time-html. | @@ -1394,6 +1394,7 @@ handle_signal_action (GO_UNUSED int sig_number) {
fprintf (stderr, "\nSIGINT caught!\n");
fprintf (stderr, "Closing GoAccess...\n");
+ if (conf.output_stdout && conf.real_time_html)
stop_ws_server (gwswriter, gwsreader);
conf.stop_processing = 1;
|
Allow to compile the leds example for platforms with LEDS_LEGACY_API | @@ -62,12 +62,14 @@ PROCESS_THREAD(leds_example, ev, data)
leds_on(LEDS_ALL);
} else if((counter & 7) == 3) {
leds_toggle(LEDS_ALL);
+#if !LEDS_LEGACY_API
} else if((counter & 7) == 4) {
leds_single_on(LEDS_LED1);
} else if((counter & 7) == 5) {
leds_single_off(LEDS_LED1);
} else if((counter & 7) == 6) {
leds_single_to... |
Profiling Tutorial: Fix command argument | @@ -70,7 +70,7 @@ build/bin/benchmark_plugingetset benchmarks/data user yaypeg get
```sh
valgrind --tool=callgrind --callgrind-out-file=callgrind.out \
-build/bin/benchmark_plugingetset /tmp user yaypeg get
+build/bin/benchmark_plugingetset benchmarks/data user yaypeg get
```
. The command above will create a file call... |
filter: pass null terminated tag to filter callback | @@ -86,7 +86,6 @@ void flb_filter_do(struct flb_input_chunk *ic,
memcpy(ntag, tag, tag_len);
ntag[tag_len] = '\0';
-
work_data = (const char *) data;
work_size = bytes;
@@ -118,7 +117,7 @@ void flb_filter_do(struct flb_input_chunk *ic,
/* Invoke the filter callback */
ret = f_ins->p->cb_filter(work_data, /* msgpack buf... |
py/pairheap: Add helper function to initialise a new node. | @@ -64,6 +64,13 @@ static inline mp_pairheap_t *mp_pairheap_new(mp_pairheap_lt_t lt) {
return NULL;
}
+// Initialise a single pairing-heap node so it is ready to push on to a heap.
+static inline void mp_pairheap_init_node(mp_pairheap_lt_t lt, mp_pairheap_t *node) {
+ (void)lt;
+ node->child = NULL;
+ node->next = NULL... |
Clean-up, document Haskell function-call wrapper | @@ -12,10 +12,23 @@ void hslua_pushhaskellerr(lua_State *L)
lua_getglobal(L, "_HASKELLERR");
}
+/*
+** Checks whether the object at the given index is a Haskell error.
+*/
+int hslua_is_haskell_error(lua_State *L, int idx) {
+ hslua_pushhaskellerr(L);
+ int is_err = lua_rawequal(L, idx, -1);
+ lua_pop(L, 1); /* pop has... |
cleanup: Simpler internal path for writing assign to a global. | @@ -1796,10 +1796,7 @@ static int can_optimize_out_assignment(lily_ast *ast)
/* Keep these conditions away from each other since each has a different
reason why optimization can't be done. */
- if (ast->left->tree_type == tree_global_var)
- /* The receiver is a global var and thus in a different scope. */
- ;
- else if... |
stm32/mboot: Add hook to run board-specific code early on startup. | @@ -1211,6 +1211,10 @@ void stm32_main(int initial_r0) {
SCB_EnableDCache();
#endif
+ #if defined(MBOOT_BOARD_EARLY_INIT)
+ MBOOT_BOARD_EARLY_INIT();
+ #endif
+
#ifdef MBOOT_BOOTPIN_PIN
mp_hal_pin_config(MBOOT_BOOTPIN_PIN, MP_HAL_PIN_MODE_INPUT, MBOOT_BOOTPIN_PULL, 0);
if (mp_hal_pin_read(MBOOT_BOOTPIN_PIN) == MBOOT_BO... |
Bump pack dev-drop version. | <url>http://www.keil.com/pack/</url>
<releases>
- <release version="5.7.0-dev0">
+ <release version="5.7.0-dev1">
Active development...
CMSIS-Core(M): 5.4.0 (see revision history for details)
- Enhanced MVE support for Armv8.1-MML
|
SoapyLMS: return time error when negative timestamp is used | @@ -421,6 +421,8 @@ int SoapyLMS7::writeStream(
const long long timeNs,
const long timeoutUs)
{
+ if ((flags & SOAPY_SDR_HAS_TIME) && (timeNs <= 0))
+ return SOAPY_SDR_TIME_ERROR;
auto icstream = (IConnectionStream *)stream;
const auto &streamID = icstream->streamID;
|
charger/rt946x: Log the init failure
BRANCH=none
TEST=See the error message when init fails
Commit-Ready: Philip Chen
Tested-by: Philip Chen | @@ -746,9 +746,11 @@ static void rt946x_init(void)
}
CPRINTF("RT946X CHIP REV: 0x%02x\n", reg);
- if (rt946x_init_setting())
+ if (rt946x_init_setting()) {
+ CPRINTF("RT946X init failed\n");
return;
- CPRINTF("RT946X initialized\n");
+ }
+ CPRINTF("RT946X init succeeded\n");
}
DECLARE_HOOK(HOOK_INIT, rt946x_init, HOOK_... |
Fix CBF flags for 4x4 luma blocks
CBF flags were not being propagated to the upper level from blocks of
size 4x4. | @@ -460,10 +460,8 @@ void kvz_quantize_lcu_residual(encoder_state_t * const state,
LCU_GET_CU_AT_PX(lcu, lcu_px.x + offset, lcu_px.y + offset)->cbf,
};
- if (luma && depth < MAX_DEPTH) {
+ if (depth <= MAX_DEPTH) {
cbf_set_conditionally(&cur_pu->cbf, child_cbfs, depth, COLOR_Y);
- }
- if (chroma && depth <= MAX_DEPTH) ... |
Server sends CONNECTION_CLOSE in both INITIAL and HANDSHAKE packets
Do we need to do this for APPLICATION_CLOSE? | @@ -7796,7 +7796,7 @@ ssize_t ngtcp2_conn_write_connection_close(ngtcp2_conn *conn, ngtcp2_path *path,
uint8_t *dest, size_t destlen,
uint16_t error_code,
ngtcp2_tstamp ts) {
- ssize_t nwrite;
+ ssize_t res, nwrite;
ngtcp2_frame fr;
uint8_t pkt_type;
@@ -7835,12 +7835,27 @@ ssize_t ngtcp2_conn_write_connection_close(ng... |
update openmotecc2538 sctimer. | // ========================== define ==========================================
#define TIMERLOOP_THRESHOLD 0xffffff // 511 seconds @ 32768Hz clock
+#define MINIMUM_COMPAREVALE_ADVANCE 10
// ========================== variable ========================================
@@ -51,7 +52,7 @@ void sctimer_setCompare(uint32_t v... |
Fixed semantic decoding of EIP/RIP-relative displacements | @@ -1272,7 +1272,7 @@ static ZydisStatus ZydisDecodeOperandMemory(ZydisDecoderContext* context,
switch (info->details.modrm.mod)
{
case 0:
- if (modrm_rm == 5)
+ if ((modrm_rm & 0x07) == 5)
{
if (context->decoder->machineMode == 64)
{
@@ -1327,7 +1327,7 @@ static ZydisStatus ZydisDecodeOperandMemory(ZydisDecoderContext... |
TEST : modified run_test.pl | @@ -22,6 +22,6 @@ if (grep $_ eq $engine_name, @engine_list) {
# default engine test
system("prove $opt - < $srcdir/t/tlist/engine_default_$ext\.txt :: default");
} else {
- system('echo -e \'\033[31mmake test [TYPE=<small || big>] [ENGINE=<default>]\033[0m\n\'');
+ system("echo -e \'\033[31mmake test [TYPE=<small || b... |
asn1_item_embed_new(): if locking failed, don't call asn1_item_embed_free()
asn1_item_embed_free() will try unlocking and fail in this case, and
since the new item was just allocated on the heap, free it directly
with OPENSSL_free() instead. | @@ -124,8 +124,13 @@ int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
goto memerr;
}
/* 0 : init. lock */
- if (asn1_do_lock(pval, 0, it) < 0)
- goto memerr2;
+ if (asn1_do_lock(pval, 0, it) < 0) {
+ if (!embed) {
+ OPENSSL_free(*pval);
+ *pval = NULL;
+ }
+ goto memerr;
+ }
asn1_enc_init(pval... |
release: change cmake build to make | @@ -16,9 +16,7 @@ install_elektra() {
mkdir $BUILD_DIR
cd $BUILD_DIR
cmake -DBUILD_SHARED=ON -DBUILD_FULL=ON -DBUILD_STATIC=ON ..
- cd ..
- cmake --build build
- cd $BUILD_DIR
+ make
make install
ldconfig
export VERSION=$(kdb get system/elektra/version/constants/KDB_VERSION)
|
Add model multi-threading annotations (ignored by default) to FireChip | @@ -18,7 +18,7 @@ import icenet.{CanHavePeripheryIceNIC, SimNetwork, NicLoopback, NICKey, NICIOvon
import junctions.{NastiKey, NastiParameters}
import midas.models.{FASEDBridge, AXI4EdgeSummary, CompleteConfig}
-import midas.targetutils.{MemModelAnnotation}
+import midas.targetutils.{FAMEModelAnnotation, MemModelAnnota... |
add mac address offset for some esp32s2. | @@ -164,7 +164,20 @@ esp_err_t esp_read_mac(uint8_t* mac, esp_mac_type_t type)
case ESP_MAC_WIFI_SOFTAP:
#if CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP
memcpy(mac, efuse_mac, 6);
+ // as a result of some esp32s2 chips burned with one MAC address by mistake,
+ // there are some MAC address are reserved for this bug fix.
+ // ... |
fix regularize | @@ -328,6 +328,8 @@ namespace NKernel {
pseudoRank += val > 1e-9f;
}
+ __syncthreads();
+
#pragma unroll 8
for (int row = 0; row < rowSize; ++row) {
//beta prior (uniform). Makes rank(lower) = rowSize - 1
|
ip: coverity fix
Delete Null-checking "p0" in function ip6_tcp_udp_icmp_bad_length,
because it's not necessary.
Type: fix | @@ -1161,8 +1161,7 @@ ip6_tcp_udp_icmp_bad_length (vlib_main_t * vm, vlib_buffer_t * p0)
payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
n_bytes_left = n_this_buffer = payload_length_host_byte_order;
- if (p0)
- {
+
u32 n_ip_bytes_this_buffer =
p0->current_length - (((u8 *) ip0 - p0->data) ... |
tools/araui: Revise araui simulator template
'view' term is changed to the 'window'. apply it. | #include <araui/ui_widget.h>
#include "dal/dal_sdl.h"
-ui_window_t g_view;
+ui_window_t g_window;
-static void on_create_cb(ui_window_t view)
+static void on_create_cb(ui_window_t window)
{
}
-static void on_destroy_cb(ui_window_t view)
+static void on_destroy_cb(ui_window_t window)
{
}
-static void on_show_cb(ui_windo... |
update settings pokes, scries | -import { Poke } from "../lib";
+import { Poke, Scry } from "../lib";
import { PutBucket, Key, Bucket, DelBucket, Value, PutEntry, DelEntry, SettingsUpdate } from './types';
export const action = <T extends SettingsUpdate>(data: T): Poke<T> => ({
@@ -47,4 +47,20 @@ export const delEntry = (
}
});
+export const getAll: ... |
fix reldist test | @@ -125,8 +125,8 @@ echo \
0.25 315 43422 0.007
0.26 370 43422 0.009
0.27 330 43422 0.008
-0.28 330 43422 0.008
-0.29 280 43422 0.006
+0.28 332 43422 0.008
+0.29 278 43422 0.006
0.30 309 43422 0.007
0.31 326 43422 0.008
0.32 287 43422 0.007
|
out_gelf: check NULL context on exit | @@ -460,6 +460,10 @@ static int cb_gelf_exit(void *data, struct flb_config *config)
{
struct flb_out_gelf_config *ctx = data;
+ if (ctx == NULL) {
+ return 0;
+ }
+
if (ctx->u) {
flb_upstream_destroy(ctx->u);
}
|
Fix openvr_getSkeleton signature; | @@ -445,7 +445,7 @@ static bool openvr_getAxis(Device device, DeviceAxis axis, vec3 value) {
return false;
}
-static bool openvr_getSkeleton(Device device, float* poses, uint32_t* poseCount) {
+static bool openvr_getSkeleton(Device device, float* poses) {
return false;
}
|
initialized record_status in write_new_bucket | @@ -678,8 +678,7 @@ write_new_bucket(
fwrite(&bucket, sizeof(linear_hash_bucket_t), 1, linear_hash->database);
/* write bucket data to file */
- ion_byte_t record_status;
-
+ ion_byte_t record_status = 0;
ion_byte_t record_blank[linear_hash->super.record.key_size + linear_hash->super.record.value_size];
memset(record_b... |
Use Python 3.10 for flake8 linting job | @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python-version }}
+ - name: Set up Python
uses: actions/setup-python@v2
with:
- python-version: ${{ matrix.python-version }}
+ python-version: "3.10"
- name: Install dependencies
run: python -m pip insta... |
Fix PCP Warning in OneBranch Build | @@ -14,6 +14,8 @@ Abstract:
#include "pcp.c.clog.h"
#endif
+#pragma warning(disable:4221) // nonstandard extension used: 'Route': cannot be initialized using address of automatic variable 'Route'
+
const uint16_t CXPLAT_PCP_PORT = 5351;
const uint16_t PCP_MAX_UDP_PAYLOAD = 1100;
|
iommu: print the iommu id when creating a device | @@ -111,7 +111,7 @@ errval_t vtd_device_create(struct vtd *vtd, uint16_t seg, uint8_t bus,
{
errval_t err;
- INTEL_VTD_DEBUG_DEVICES("create %u.%u.%u\n", bus, dev, fun);
+ INTEL_VTD_DEBUG_DEVICES("[%u] create %u.%u.%u\n", vtd->index, bus, dev, fun);
assert(rdev);
|
sdcard_image-rpi.bbclass: Use IMAGE_NAME_SUFFIX variable in SDIMG
Use the IMAGE_NAME_SUFFIX variable to build the SDIMG name. Some layers,
notably meta-mender, change the IMAGE_NAME_SUFFIX variable to something
other that ".rootfs", causing build failures. | @@ -64,7 +64,7 @@ do_image_rpi_sdimg[depends] = " \
do_image_rpi_sdimg[recrdeps] = "do_build"
# SD card image name
-SDIMG = "${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.rpi-sdimg"
+SDIMG = "${IMGDEPLOYDIR}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.rpi-sdimg"
# Additional files and/or directories to be copied into the vfat partition f... |
multiclock config multiple | @@ -255,7 +255,7 @@ class FireSimCVA6Config extends Config(
//* Multiclock Configurations
//*********************************************************************************/
class FireSimMulticlockRocketConfig extends Config(
- new chipyard.config.WithTileFrequency(6400.0) ++ //lol
+ new chipyard.config.WithTileFreque... |
update package counts for README | #### Community building blocks for HPC systems (v1.3.8)
-[ ](https://github.com/openhpc/ohpc/wiki/Component-List-v1.3.7)
-[ ](https://github.com/openhpc/ohpc/releases/tag/v1... |
vere: adds `urbit db-info path/to/pier` command | #include "all.h"
#include "vere/vere.h"
+#include <vere/db/lmdb.h>
+
#include "ca-bundle.h"
/* Require unsigned char
@@ -602,6 +604,32 @@ _stop_on_boot_completed_cb()
u3_king_exit();
}
+static c3_i
+_debug_db_stats(const c3_c* dir_c)
+{
+#if defined(U3_CPU_aarch64) && defined(U3_OS_linux)
+ const size_t siz_i = 6442450... |
Re-enable 2 Ripple unit tests
Due to changes in the Ripple code with respect to how the sequence number was
calculated/incremented these 2 tests failed. Just needed to subtract 1 from
the sequence number when calling rippleAccountSetSequence | @@ -333,7 +333,7 @@ testSerializeWithSignature () {
rippleAddressFree (address);
rippleAddressFree (targetAddress);
- uint32_t sequence_number = 25;
+ uint32_t last_sequence_number = 25;
// Before we sign the sequence should be 0
uint32_t sequence = rippleTransactionGetSequence(transaction);
@@ -341,7 +341,7 @@ testSer... |
tools/runqslower: replace invalid delete operation by zero update
ARRAY map has no delete operation, see
so the delete operation always return EINVAL.
runqslower already treated '0' as special ts value. so make an update() with zero value instead. | @@ -150,7 +150,8 @@ int trace_run(struct pt_regs *ctx, struct task_struct *prev)
// output
events.perf_submit(ctx, &data, sizeof(data));
- start.delete(&pid);
+ //array map has no delete method, set ts to 0 instead
+ *tsp = 0;
return 0;
}
"""
@@ -222,7 +223,8 @@ RAW_TRACEPOINT_PROBE(sched_switch)
// output
events.perf_... |
arm: remove false dependencies
The hex and bin files are not required
for the target according to the comment,
so stop building them.
This is preparation to remove the customrules
for Cortex-M, but it also saves IO load
on the IO-limited CI machines. | @@ -93,8 +93,6 @@ $(OUT_LST): $(OUT_ELF)
$(TRACE_OBJDUMP)
$(Q)$(OBJDUMP) $(OBJDUMP_FLAGS) $< > $@
-### We don't really need the .hex and .bin for the .$(TARGET) but let's make
-### sure they get built
-$(BUILD_DIR_BOARD)/%.$(TARGET): $(OUT_ELF) $(OUT_HEX) $(OUT_BIN)
+$(BUILD_DIR_BOARD)/%.$(TARGET): $(OUT_ELF)
$(TRACE_C... |
Build: Use package-version from raven-config.h when naming files (PR | @@ -15,11 +15,8 @@ if [[ ! ${OS} || ! ${GITHUB_WORKSPACE} || ! ${GITHUB_BASE_REF} ]]; then
fi
cd ${GITHUB_WORKSPACE}
-MAJOR=`grep "define(_CLIENT_VERSION_MAJOR" configure.ac | cut -d"," -f2 | cut -d" " -f2 | cut -d")" -f1`
-MINOR=`grep "define(_CLIENT_VERSION_MINOR" configure.ac | cut -d"," -f2 | cut -d" " -f2 | cut -d... |
interface: missing contacts in PostReplies | @@ -107,7 +107,6 @@ export default class PostReplies extends React.PureComponent {
pendingSize={pendingSize}
association={association}
groups={groups}
- contacts={contacts}
api={api}
history={history}
baseUrl={baseUrl}
|
Define NGTCP2_MAX_PMTUD_UDP_PAYLOAD_SIZE | @@ -325,6 +325,14 @@ typedef struct ngtcp2_mem {
*/
#define NGTCP2_MAX_UDP_PAYLOAD_SIZE 1200
+/**
+ * @macro
+ *
+ * :macro:`NGTCP2_MAX_PMTUD_UDP_PAYLOAD_SIZE` is the maximum UDP
+ * datagram payload size that Path MTU Discovery can discover.
+ */
+#define NGTCP2_MAX_PMTUD_UDP_PAYLOAD_SIZE 1452
+
/**
* @macrosection
*
|
lwip-2.0.2: update lwip options | ---------------------------------------
*/
+#define LWIP_NOASSERT 1
//#define LWIP_DEBUG 0
#define TAPIF_DEBUG LWIP_DBG_OFF
#define TUNIF_DEBUG LWIP_DBG_OFF
@@ -482,13 +483,15 @@ extern unsigned char debug_flags;
#define CHECKSUM_CHECK_TCP 1
#endif
#else
-#ifndef CHECKSUM_CHECK_IP
-#define CHECKSUM_CHECK_IP 0
-#endif
-... |
Tag for 4.5.0rc1 release. | that do not have IXFR enabled. The clients gets a full zone reply
or a status reply if the serial is up to date.
- set version to 4.5.0 for feature change.
+ - Tag for 4.5.0rc1 release.
14 April 2022: Wouter
- Update cirrus script FreeBSD version.
|
core/i2c: Poll on request state in i2c_request_send()
Use the new built-in state variable rather than a single-use completion
function. Makes things a bit cleaner. | @@ -140,20 +140,6 @@ opal_call(OPAL_I2C_REQUEST, opal_i2c_request, 3);
#define MAX_NACK_RETRIES 2
#define REQ_COMPLETE_POLLING 5 /* Check if req is complete
in 5ms interval */
-
-struct i2c_sync_userdata {
- int rc;
- bool done;
-};
-
-static void i2c_sync_request_complete(int rc, struct i2c_request *req)
-{
- struct i... |
Fix mis-edits in the gcc-derived power8 caxpy kernel | @@ -34,9 +34,9 @@ caxpy_k:
lfs 0,4(10)
fmuls 10,2,10
#ifdef CONJ
- fmsubs 11,11,1,10
-#else
fmadds 11,11,1,10
+#else
+ fmsubs 11,11,1,10
#endif
fadds 12,12,11
stfs 12,0(10)
@@ -241,8 +241,13 @@ caxpy_k:
lfsx 12,8,5
lfsx 0,10,5
fmuls 11,2,11
+#ifdef CONJ
fmsubs 12,1,12,11
fsubs 0,0,12
+#else
+ fmadds 12,1,12,11
+ fadds ... |
CI/CD: update rune attest test cases because of dropping
the input linkable parameter and adding the input quote type parameter | @@ -105,11 +105,11 @@ jobs:
- name: Get local report with rune attest command
if: ${{ contains(matrix.sgx, 'SGX1') }}
- run: docker exec $rune_test bash -c "rune --debug attest --reportFile=/report.bin skeleton-enclave-container"
+ run: docker exec $rune_test bash -c "rune --debug attest --reportFile=/report.bin --quot... |
doc: refer to existing docker image
closes
thanks to | @@ -299,7 +299,8 @@ Do not use private Elektra headers for Ruby bindings as preparation for a Ruby `
- The docker images used by our build system are now available to download from
our systems without authentication.
Try it out and list available images via `docker run --rm anoxis/registry-cli -r https://hub-public.lib... |
trace: fix whitescan bugs
[Detail]
declaration is incompatible with previous "SYSVIEW_SendTaskInfo"
(declared
at line 75)
[Verified Cases]
Build Pass: <py_engine_demo>
Test Pass: <py_engine_demo> | @@ -54,12 +54,31 @@ Revision: $Rev: 7947 $
#include "k_api.h"
#include "SEGGER_SYSVIEW.h"
+/*********************************************************************
+*
+* SYSVIEW_SendTaskInfo()
+*
+* Function description
+* Record task information.
+*/
+static void SYSVIEW_SendTaskInfo(U32 TaskID, const char* sName, unsig... |
launch: added scrys for missing options | |= =path
^- (unit (unit cage))
?+ path (on-peek:def path)
+ [%x %tiles ~] ``noun+!>([tiles tile-ordering])
+ [%x %first-time ~] ``noun+!>(first-time)
[%x %keys ~] ``noun+!>(~(key by tiles))
==
::
|
syncing vbank1 palette | @@ -175,6 +175,16 @@ static inline void sync(void* dst, void* src, s32 size, bool rev)
memcpy(dst, src, size);
}
+static inline tic_vram* vbank0(tic_core* core)
+{
+ return core->state.vbank.id ? &core->state.vbank.mem : &core->memory.ram->vram;
+}
+
+static inline tic_vram* vbank1(tic_core* core)
+{
+ return core->sta... |
stm32/boards/STM32L476DISC: Enable external RTC xtal to get RTC working. | @@ -36,6 +36,9 @@ extern struct _spi_bdev_t spi_bdev;
#define MICROPY_HW_CLK_PLLR (RCC_PLLR_DIV2)
#define MICROPY_HW_CLK_PLLQ (RCC_PLLQ_DIV2)
+// The board has an external 32kHz crystal
+#define MICROPY_HW_RTC_USE_LSE (1)
+
#define MICROPY_HW_FLASH_LATENCY FLASH_LATENCY_4
// USART config
|
octopus: set KB_BL_PWR_EN to GPIO62 for Droid/Blorb
Droid/Blorb use GPIO62 as KB_BL_PWR_EN to control keyboard backlight
power.
BRANCH=octopus
TEST=Check keyboard backlight power status in S0/S3/S5.
Commit-Ready: Marco Chen | @@ -132,8 +132,8 @@ GPIO(BAT_LED_ORANGE_L, PIN(C, 3), GPIO_OUT_HIGH) /* LED_1_L */
GPIO(BAT_LED_BLUE_L, PIN(C, 4), GPIO_OUT_HIGH) /* LED_2_L */
GPIO(LED_3_L, PIN(D, 7), GPIO_OUT_HIGH)
-/* Not implemented in hardware */
-UNIMPLEMENTED(KB_BL_PWR_EN)
+/* Keyboard Backlight */
+GPIO(KB_BL_PWR_EN, PIN(6, 2), GPIO_OUT_LOW)
/... |
chat-view: bind eyre in ++on-init
chat-view bound to eyre in ++on-load but not in ++on-init, causing
freshly booted ships to be unable to access chat backlog | ++ on-init
^- (quip card _this)
:_ this
- :- :* %pass /srv %agent [our.bol %file-server]
+ :~ :* %pass /srv %agent [our.bol %file-server]
%poke %file-server-action
!>([%serve-dir /'~chat' /app/landscape %.n])
==
- [%pass /updates %agent [our.bol %chat-store] %watch /updates]~
+ [%pass / %arvo %e %connect [~ /'chat-view... |
OcAppleBootCompatLib: Fix event closing | @@ -1054,7 +1054,7 @@ InstallServiceOverrides (
);
if (EFI_ERROR (Status)) {
- gBS->CloseEvent (&BootCompat->ServiceState.GetVariableEvent);
+ gBS->CloseEvent (BootCompat->ServiceState.GetVariableEvent);
}
}
}
|
Add tasty.lua to list of extra source files | @@ -11,6 +11,7 @@ copyright: Albert Krewinkel <albert+hslua@zeitkraut.de>
category: Foreign
build-type: Simple
extra-source-files: CHANGELOG.md
+ , tasty.lua
cabal-version: >=1.10
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5
|
khan: remove %set-config stub | @@ -283,13 +283,6 @@ _khan_ef_handle(u3_khan* kan_u,
u3z(tag); u3z(dat);
return;
}
- if ( 0 == coq_l ) {
- if ( c3y == u3r_sing_c("set-config", tag) ) {
- u3l_log("khan: set-config\n");
- u3z(tag); u3z(dat);
- return;
- }
- }
if ( 0 != (can_u = _khan_search_chan(kan_u, sev_l, coq_l)) ) {
if ( c3__avow == tag ) {
c3_y* ... |
gpio: fix potential race condition inside gpio_install_isr_service | @@ -451,13 +451,20 @@ esp_err_t gpio_install_isr_service(int intr_alloc_flags)
gpio_isr_func_t *isr_func = (gpio_isr_func_t *) calloc(GPIO_NUM_MAX, sizeof(gpio_isr_func_t));
if (isr_func) {
portENTER_CRITICAL(&gpio_context.gpio_spinlock);
+ if (gpio_context.gpio_isr_func == NULL) {
gpio_context.gpio_isr_func = isr_func... |
update eventdest and metricdest help messages | @@ -43,10 +43,10 @@ func helpErrAndExit(cmd *cobra.Command, errText string) {
}
func metricAndEventDestFlags(cmd *cobra.Command, rc *run.Config) {
- cmd.Flags().StringVarP(&rc.CriblDest, "cribldest", "c", "", "Set Cribl destination for metrics & events (default tls://)")
+ cmd.Flags().StringVarP(&rc.CriblDest, "criblde... |
runtimes/singularity: update golang version for leap | @@ -54,8 +54,8 @@ BuildRequires: openssl-devel
BuildRequires: libuuid-devel
BuildRequires: libseccomp-devel
Requires: file
-%if 0%{?sles_version} || 0%{?suse_version}
-BuildRequires: go
+%if 0%{?suse_version}
+BuildRequires: go1.12
BuildRequires: binutils-gold
Requires: squashfs
%else
|
Enable SECURE by default
SECURE enabled by default.
Provide "SECURE=0" as build argument to disable the macro.
Tested-by: IoTivity Jenkins | @@ -84,7 +84,7 @@ ifeq ($(DYNAMIC),1)
EXTRA_CFLAGS += -DOC_DYNAMIC_ALLOCATION
endif
-ifeq ($(SECURE),1)
+ifneq ($(SECURE),0)
SRC += $(addprefix ../../security/,oc_acl.c oc_cred.c oc_doxm.c oc_pstat.c oc_tls.c oc_svr.c oc_store.c)
SRC_COMMON += $(addprefix $(MBEDTLS_DIR)/library/,${DTLS})
MBEDTLS_PATCH_FILE := $(MBEDTLS... |
Change PSA Cipher macro safety to use block length
Although checking if the key was symmetric was correct, its easier to
read if we just check the block length is not zero before we use it in a
division. | */
#define PSA_CIPHER_ENCRYPT_OUTPUT_SIZE(key_type, alg, input_length) \
(alg == PSA_ALG_CBC_PKCS7 ? \
- (((key_type) & PSA_KEY_TYPE_CATEGORY_MASK) \
- == PSA_KEY_TYPE_CATEGORY_SYMMETRIC ? \
+ (PSA_BLOCK_CIPHER_BLOCK_LENGTH(key_type) != 0 ? \
PSA_ROUND_UP_TO_MULTIPLE(PSA_BLOCK_CIPHER_BLOCK_LENGTH(key_type), \
(input_le... |
out_kafka: add cast to parameter | @@ -137,7 +137,7 @@ int produce_message(struct flb_time *tm, msgpack_object *map,
if (ctx->topic_key && !topic && val.type == MSGPACK_OBJECT_STR) {
if (key.via.str.size == ctx->topic_key_len &&
strncmp(key.via.str.ptr, ctx->topic_key, ctx->topic_key_len) == 0) {
- topic = flb_kafka_topic_lookup(val.via.str.ptr,
+ topic... |
board/rammus/board.h: Format with clang-format
BRANCH=none
TEST=none | @@ -248,11 +248,7 @@ enum sensor_id {
SENSOR_COUNT,
};
-enum adc_channel {
- ADC_VBUS,
- ADC_AMON_BMON,
- ADC_CH_COUNT
-};
+enum adc_channel { ADC_VBUS, ADC_AMON_BMON, ADC_CH_COUNT };
enum pwm_channel {
PWM_CH_KBLIGHT,
|
OpenBOR "paks" menu fix
decreased the "MAX_MODS_NUM" from 100 to 18 to avoid the engine "close" bug when you have multiple paks | #define MAX_FILENAME_LEN 256
#define MAX_LABEL_LEN 128
-#define MAX_MODS_NUM 18
+#define MAX_MODS_NUM 18 //Kratus (13-03-21) decreased the max pak numbers from 100 to 18 to avoid engine "close" bug
#ifdef PSP
#include <stdarg.h>
|
Temporarily disable optimizations when generating bitcodes for
consumption by SAW. Fixes errors with symbolic simulation. | @@ -66,7 +66,9 @@ endif
CFLAGS_LLVM = ${DEFAULT_CFLAGS} -fno-inline -emit-llvm -c -g
$(BITCODE_DIR)%.bc: %.c
- $(CLANG) $(CFLAGS_LLVM) -o $@ $<
+ # -O0 is a temporary fix to prevent clang from emiting LLVM
+ # instructions that are not supported by SAW
+ $(CLANG) $(CFLAGS_LLVM) -O0 -o $@ $<
INDENTOPTS = -npro -kr -i4 -... |
filter_grep: support config map(#5209)
Previous config map patch is wrong since it doesn't parse below regex.
Exclude log /Using deprecated option/
This patch is to support /REGEX/ style. | @@ -186,6 +186,12 @@ static int cb_grep_init(struct flb_filter_instance *f_ins,
flb_errno();
return -1;
}
+ if (flb_filter_config_map_set(f_ins, ctx) < 0) {
+ flb_errno();
+ flb_plg_error(f_ins, "configuration error");
+ flb_free(ctx);
+ return -1;
+ }
mk_list_init(&ctx->rules);
ctx->ins = f_ins;
@@ -275,11 +281,26 @@ ... |
Show OpenGL version below engine name too to avoid it getting clipped | @@ -1194,13 +1194,6 @@ void render_imgui(swapchain_stats& data, struct overlay_params& params, ImVec2&
if (params.enabled[OVERLAY_PARAM_ENABLED_fps]){
ImGui::TableNextRow();
ImGui::TextColored(ImGui::ColorConvertU32ToFloat4(params.engine_color), "%s", is_vulkan ? engineName.c_str() : "OpenGL");
- if (!is_vulkan) {
- Im... |
Work around a glitch in the ASE DDR model.
The DDR simulation model's Avalon ready/enable protocol deliberately uses clock offsets, which wreak havoc even in the Qsys-supplied bridges. Adding a small delay to the simulated DDR clock passed to the AFU causes the AFU to sample signals when they are stable. | @@ -122,8 +122,11 @@ typedef struct
Response read_response_queue_slave[`NUM_SLAVES][$];
// ddr user clock frequency = 266.666.. Mhz
-assign ddr4a_avmm_clk_clk = ddr4a_pll_ref_clk_clock_sink_clk;
-assign ddr4b_avmm_clk_clk = ddr4a_pll_ref_clk_clock_sink_clk;
+// We shift the clock because altera_avalon_mm_slave_bfm shif... |
hv:irq: correct the size of irq_alloc_bitmap
This commit corrected the size of irq_alloc_bitmap[]. | static spinlock_t exception_spinlock = { .head = 0U, .tail = 0U, };
static spinlock_t irq_alloc_spinlock = { .head = 0U, .tail = 0U, };
-#define IRQ_ALLOC_BITMAP_SIZE INT_DIV_ROUNDUP(NR_IRQS, sizeof(uint64_t))
+#define IRQ_ALLOC_BITMAP_SIZE INT_DIV_ROUNDUP(NR_IRQS, 64U)
static uint64_t irq_alloc_bitmap[IRQ_ALLOC_BITMAP... |
removes duplicate +join from :dns, uses en-turf:html | :: oauth2 implementation, and helpers
::
|%
-:: +join: join list of cords with separator
-::
-:: XX move to zuse?
-:: XX dedup with lib/pkcs
-::
-++ join
- |= [sep=@t hot=(list @t)]
- ^- @t
- =| out=(list @t)
- ?> ?=(^ hot)
- |- ^- @t
- ?~ t.hot
- (rap 3 [i.hot out])
- $(out [sep i.hot out], hot t.hot)
:: +local-uri: X... |
TCPMv2: Update source Rp if no contract in place
When no contract is in place, update our source Rp when a new current is
selected on a port.
BRANCH=None
TEST=make -j buildall | @@ -3100,11 +3100,15 @@ static void tc_attached_src_run(const int port)
#endif
if (TC_CHK_FLAG(port, TC_FLAGS_UPDATE_CURRENT)) {
- /* TODO(b/141690755): Also set new CC if needed for non-PD */
TC_CLR_FLAG(port, TC_FLAGS_UPDATE_CURRENT);
typec_set_source_current_limit(port,
tc[port].select_current_limit_rp);
pd_update_c... |
test add setUp and tearDown to test template | #include "unity/unity.h"
+void setUp(void);
+void tearDown(void);
+
void test_func_1(void);
+void setUp(void)
+{
+ /* Function run before every test */
+}
+
+void tearDown(void)
+{
+ /* Function run after every test */
+}
+
void test_func_1(void)
{
TEST_ASSERT_EQUAL(actual, expected);
|
Bugid:16796279:http2_stream:use sha1 instead of md5 to gen sign string | @@ -130,7 +130,7 @@ static void file_upload_gen_string(char *str, int type, char *para1, int para2)
break;
}
case REAL_SIGN_STR_ENUM: {
- utils_hmac_md5(para1, strlen(para1), str, g_device_info.device_secret, strlen(g_device_info.device_secret));
+ utils_hmac_sha1(para1, strlen(para1),str,g_device_info.device_secret, s... |
Fix build script so auto-build of imath uses the new branch name | @@ -251,10 +251,10 @@ option(OPENEXR_FORCE_INTERNAL_IMATH "Force using an internal imath" OFF)
# Check to see if Imath is installed outside of the current build directory.
set(IMATH_REPO "https://github.com/AcademySoftwareFoundation/Imath.git" CACHE STRING
"Repo for auto-build of Imath")
-set(IMATH_TAG "master" CACHE S... |
Fix variable name mis-match in example code | @@ -156,7 +156,7 @@ A B<DH> key can be generated with a named safe prime group by calling:
EVP_PKEY_CTX_set_params(pctx, params);
EVP_PKEY_generate(pctx, &pkey);
...
- EVP_PKEY_free(key);
+ EVP_PKEY_free(pkey);
EVP_PKEY_CTX_free(pctx);
B<DHX> domain parameters can be generated according to B<FIPS 186-4> by calling:
|
netutils/webclient: check webclient example running status
This commit addes global value for checking webclieng running status.
If webclient example runs twice at a time, global values like g_https
and g_async can be destroyed by latter webclient app. | @@ -131,6 +131,7 @@ struct http_client_ssl_config_t g_config = {
sizeof(c_ca_crt_rsa), sizeof(c_cli_crt_rsa), sizeof(c_cli_key_rsa), 2
};
+static int g_running;
static int g_https;
static int g_async;
static int g_testentity;
@@ -343,9 +344,17 @@ int webclient_main(int argc, char *argv[])
pthread_t tid;
struct webclien... |
make test: improve console output messages
Remove the word derp and replace it with a proper, more gramatically
correct message. | @@ -654,8 +654,8 @@ class VppTestCase(unittest.TestCase):
time.sleep(timeout)
after = time.time()
if after - before > 2 * timeout:
- cls.logger.error(
- "time.sleep() derp! slept for %ss instead of ~%ss!" % (
+ cls.logger.error("unexpected time.sleep() result - "
+ "slept for %ss instead of ~%ss!" % (
after - before, t... |
Fix a few offsets in UI3DModule
Fix offset of `NamePlateObjectInfoPointerArray` and `NamePlateObjectInfoCounter`
Thanks to Banana Bread for finding them! | @@ -81,8 +81,8 @@ public unsafe struct UI3DModule
[FieldOffset(0x20)] public fixed byte ObjectInfoArray[596 * 0x60]; // array of Client::UI::UI3DModule::ObjectInfo
[FieldOffset(0xDFA0)] public fixed byte SortedObjectInfoPointerArray[596 * 0x8]; // array of Client::UI::UI3DModule::ObjectInfo*, distance sorted(?)
[FieldO... |
Add rpath for running unit tests executable. | @@ -5,7 +5,7 @@ set(_IMPORT_CHECK_TARGETS "") # Suppress undefined variable in Catch2Targets.cm
find_package(Catch2 CONFIG REQUIRED)
if (APPLE)
- set(CMAKE_INSTALL_RPATH "@executable_path")
+ set(CMAKE_INSTALL_RPATH "@executable_path;@executable_path/../lib")
else()
set(CMAKE_INSTALL_RPATH "$ORIGIN")
endif()
|
Turn off raw mode in shell on ctrl-C. | @@ -757,6 +757,7 @@ static int line() {
kleft();
break;
case 3: /* ctrl-c */
+ norawmode();
kill(getpid(), SIGINT);
/* fallthrough */
case 17: /* ctrl-q */
|
BugID:17646749:call ITE_MQTT_CONNECT_SUCC callback at last | @@ -3104,12 +3104,6 @@ void *IOT_MQTT_Construct(iotx_mqtt_param_t *pInitParams)
iotx_mqtt_deal_offline_subs(pclient);
- /* MQTT Connected Callback */
- callback = iotx_event_callback(ITE_MQTT_CONNECT_SUCC);
- if (callback) {
- ((int (*)(void))callback)();
- }
-
#ifndef ATHOST_MQTT_REPORT_DISBALED
iotx_set_report_func(I... |
[mod_scgi] detect child exit, restart proactively
(instead of detecting upon a subsequent HTTP request)
(for backends spawned by mod_scgi) | @@ -2886,6 +2886,49 @@ TRIGGER_FUNC(mod_scgi_handle_trigger) {
host = ex->hosts[n];
+ for (proc = host->first; proc; proc = proc->next) {
+ int status;
+
+ if (proc->pid == 0) continue;
+
+ switch (waitpid(proc->pid, &status, WNOHANG)) {
+ case 0:
+ /* child still running after timeout, good */
+ break;
+ case -1:
+ if... |
Issue Add changelog entry. | @@ -17,6 +17,8 @@ This project does not adhere to Semantic Versioning. http://semver.org/
https://bitbucket.org/libtcod/libtcod/issues/88
- Fixed TCOD_list_reverse. (Kyle Stewart)
- Fixed simplex noise artifacts when using negative coordinates. (Kyle Stewart)
+- Fixed the GLSL and OPENGL renderers (rmtew)
+ https://bit... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.