message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
Remove boomerang member from projectile struct. | @@ -1852,7 +1852,6 @@ typedef struct
int knife; // custknife;
s_axis_principal_int position; // Location at which projectiles are spawned
int star; // custstar;
- int boomerang; // custboomerang;
} s_projectile;
typedef struct
|
Copy gemspec to the build directory | @@ -270,7 +270,9 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ruby-${{ matrix.ruby }}-${{ matrix.os }}_amd64
- path: ${{runner.workspace}}/build/*.gem
+ path: |
+ ${{runner.workspace}}/build/*.gem
+ ${{runner.workspace}}/build/*.gemspec
if-no-files-found: error
uwp:
@@ -331,7 +333,7 @@ jobs:
mv actions/docker/... |
mlibc/libc: Transfer DrmMode in {GET, SET}CRTC | @@ -1155,6 +1155,22 @@ int ioctl(int fd, unsigned long request, void *arg) {
param->gamma_size = resp.drm_gamma_size();
param->mode_valid = resp.drm_mode_valid();
+ param->mode.clock = resp.drm_mode().clock();
+ param->mode.hdisplay = resp.drm_mode().hdisplay();
+ param->mode.hsync_start = resp.drm_mode().hsync_start()... |
Remove unused string reference | @@ -787,12 +787,13 @@ VOID PhGetStockApplicationIcon(
if (systemDirectory = PhGetSystemDirectory())
{
- PH_STRINGREF dllBaseName;
+ dllFileName = PhConcatStringRefZ(&systemDirectory->sr, L"\\user32.dll");
- PhInitializeStringRef(&dllBaseName, L"\\user32.dll");
- dllFileName = PhConcatStringRef2(&systemDirectory->sr, &d... |
nrf52820_hic: Configure NFC pins as GPIO in nRF52833. | #include "gpio_extra.h"
#include "compiler.h"
+#include "nrf_nvmc.h"
#include "dl_nrf_gpio.h"
#define NRF52833_COMBINED_SENSOR_INT_PIN NRF_GPIO_PIN_MAP(0, 9)
@@ -35,6 +36,15 @@ static const uint32_t COMBINED_SENSOR_INT_PIN = NRF52820_COMBINED_SENSOR_INT_PIN
COMPILER_ASSERT(GPIO_CHECK_PRESENT_NRF52820(NRF52820_COMBINED_... |
avoid issue with memset (optimizer issue with builtin_memset?) | @@ -7442,7 +7442,8 @@ static int dns_ai_setent(struct addrinfo **ent, union dns_any *any, enum dns_typ
switch (type) {
case DNS_T_A:
- saddr = memset(&sin, '\0', sizeof sin);
+ memset(&sin, '\0', sizeof sin);
+ saddr = (struct sockaddr *)&sin;
sin.sin_family = AF_INET;
sin.sin_port = htons(ai->port);
@@ -7454,7 +7455,8... |
sdl/surface: Add Surface.Duplicate() for SDL2 2.0.6" | @@ -3,6 +3,14 @@ package sdl
/*
#include "sdl_wrapper.h"
+#if !(SDL_VERSION_ATLEAST(2,0,6))
+#pragma message("SDL_DuplicateSurface is not supported before SDL 2.0.6")
+static inline SDL_Surface* SDL_DuplicateSurface(SDL_Surface *surface)
+{
+ return NULL;
+}
+#endif
+
#if !(SDL_VERSION_ATLEAST(2,0,5))
#pragma message("... |
HardwareDevices: Remove unused code | @@ -77,16 +77,11 @@ LRESULT CALLBACK MainWndDevicesSubclassProc(
}
}
}
-
- goto DefaultWndProc;
}
break;
}
return DefSubclassProc(hWnd, uMsg, wParam, lParam);
-
-DefaultWndProc:
- return DefWindowProc(hWnd, uMsg, wParam, lParam);
}
VOID AddRemoveDeviceChangeCallback(
|
turns |ask into a no-op | [[her %hood] %helm-hi ?~(mes '' (crip u.mes))]
::
++ poke-send-ask
- |= mel/cord =< abet
- %^ emit %poke /helm/ask/(scot %p ~socden-malzod)
- [[~socden-malzod %ask] %ask-mail mel]
+ |= mel/cord
+ abet
::
++ poke-serve
|= top/?(desk beam) =< abet
|
Discard packet if packet number is duplicate after removing packet protection | @@ -6093,7 +6093,6 @@ static ssize_t conn_recv_pkt(ngtcp2_conn *conn, const ngtcp2_path *path,
int non_probing_pkt = 0;
int key_phase_bit_changed = 0;
int force_decrypt_failure = 0;
- int invalid_reserved_bits = 0;
if (pkt[0] & NGTCP2_HEADER_FORM_BIT) {
nread = ngtcp2_pkt_decode_hd_long(&hd, pkt, pktlen);
@@ -6233,22 +... |
SOVERSION bump to version 6.4.19 | @@ -72,7 +72,7 @@ set(SYSREPO_VERSION ${SYSREPO_MAJOR_VERSION}.${SYSREPO_MINOR_VERSION}.${SYSREPO_
# with backward compatible change and micro version is connected with any internal change of the library.
set(SYSREPO_MAJOR_SOVERSION 6)
set(SYSREPO_MINOR_SOVERSION 4)
-set(SYSREPO_MICRO_SOVERSION 18)
+set(SYSREPO_MICRO_S... |
homebridge install script fix and added check for inet connection before update | @@ -234,10 +234,22 @@ function checkUpdate {
hb_version=""
hb_hue_version=""
+ curl --head --connect-timeout 20 -k https://www.npmjs.com/ &> /dev/null
+ if [ $? -ne 0 ]; then
+ if [[ ! -z "$PROXY_ADDRESS" && ! -z "$PROXY_PORT" && "$PROXY_ADDRESS" != "none" ]]; then
+ export http_proxy="http://${PROXY_ADDRESS}:${PROXY_P... |
Docs: fix speed code sample printf format specifiers
`%ull` should be `%llu`. | @@ -42,7 +42,7 @@ Otherwise, one way to measure performance is to augment the code to take timing
uint64_t end = esp_timer_get_time();
- printf("%u iterations took %ull milliseconds (%ull microseconds per invocation)\n",
+ printf("%u iterations took %llu milliseconds (%llu microseconds per invocation)\n",
MEASUREMENTS,... |
Use condition for not sensitive data | @@ -588,9 +588,8 @@ int mbedtls_cf_rsaes_pkcs1_v15_unpadding( size_t ilen,
size_t plaintext_size = 0;
unsigned output_too_large;
- plaintext_max_size = mbedtls_cf_size_if( output_max_len > ilen - 11,
- ilen - 11,
- output_max_len );
+ plaintext_max_size = ( output_max_len > ilen - 11 ) ? ilen - 11
+ : output_max_len;
/... |
[tests] OpenBSD crypt() support limited to bcrypt
OpenBSD crypt() does not support (insecure) crypt-des or crypt-md5
(The password used in the tests and lighttpd.htpasswd is crypt-des.
Something else could be used so that the tests can execute,
though that something might be different on different platforms.) | @@ -75,6 +75,9 @@ EOF
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 , 'HTTP-Content' => '' } ];
ok($tf->handle_http($t) == 0, 'FastCGI + bin-copy-environment');
+SKIP: {
+ skip "no crypt-des under openbsd", 2 if $^O eq 'openbsd';
+
$t->{REQUEST} = ( <<EOF
GET /get-server-env.php?env=REMOTE_US... |
Include meta keys in sha 256 calculation | @@ -42,11 +42,17 @@ kdb_boolean_t computeSha256OfKeySetWithoutValues (char hash_string[65], KeySet *
struct Sha_256 sha_256;
sha_256_init(&sha_256, hash);
- // Loop through all keys, feed full key name into sha_256_write().
+ // Loop through all keys, feed full key name and meta keys + values into sha_256_write().
Key ... |
avx512/abs: work around buggy pd functions in GCC 7 - 8.2 | @@ -524,8 +524,11 @@ simde_mm512_mask_abs_ps(simde__m512 src, simde__mmask16 k, simde__m512 v2) {
SIMDE_FUNCTION_ATTRIBUTES
simde__m512d
simde_mm512_abs_pd(simde__m512d v2) {
- #if defined(SIMDE_X86_AVX512F_NATIVE) && (!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(7,0,0))
+ #if defined(SIMDE_X86_AVX512F_NATI... |
kernel/timer: move a location of marking not in use
This commit fixs SVACE issue as shown below.
WID:5109936 Pointer '&timer->pt_flags' is dereferenced
at timer_release.c:120 after the referenced memory was
deallocated at sched_free.c:135 by passing as 1st parameter
to function 'sched_ufree' at timer_release.c:115. | @@ -114,10 +114,6 @@ static inline void timer_free(struct posix_timer_s *timer)
irqrestore(flags);
sched_kfree(timer);
}
-
- /* Mark this timer is not in use */
-
- timer->pt_flags &= ~PT_FLAGS_INUSE;
}
/********************************************************************************
@@ -167,6 +163,12 @@ int timer_rele... |
use -maxv2 on haswell | @@ -17,7 +17,7 @@ ifeq ($(TARGET_CORE), SKYLAKEX)
endif
endif
else ifeq($(TARGET_CORE), HASWELL)
- override CFLAGS += -DBUILD_KERNEL -DTABLE_NAME=gotoblas_$(TARGET_CORE) -march=core-avx2
+ override CFLAGS += -DBUILD_KERNEL -DTABLE_NAME=gotoblas_$(TARGET_CORE) -mavx2
else
override CFLAGS += -DBUILD_KERNEL -DTABLE_NAME=g... |
sanitizers: w/o -S just set some reasonable values inside the process | */
#define kSAN_COV_OPTS "coverage=1:coverage_direct=1"
-static void sanitizers_Regular(honggfuzz_t * hfuzz)
+static bool sanitizers_Regular(void)
{
- hfuzz->sanOpts.asanOpts = util_StrDup(kSAN_REGULAR);
- hfuzz->sanOpts.msanOpts = util_StrDup(kSAN_REGULAR);
- hfuzz->sanOpts.ubsanOpts = util_StrDup(kSAN_REGULAR);
+ if ... |
fix bug for gpu-mode of cdiag operator | @@ -39,6 +39,7 @@ struct cdiag_s {
unsigned int N;
const long* dims;
const long* strs;
+ const long* ddims;
const long* dstrs;
const complex float* diag;
#ifdef USE_CUDA
@@ -57,7 +58,7 @@ static void cdiag_apply(const linop_data_t* _data, complex float* dst, const com
if (cuda_ondevice(src)) {
if (NULL == data->gpu_dia... |
Support multiple instances of the encoder. | @@ -134,19 +134,20 @@ int ec11_init(struct device *dev)
return 0;
}
-struct ec11_data ec11_data;
-
-const struct ec11_config ec11_cfg = {
- .a_label = DT_INST_GPIO_LABEL(0, a_gpios),
- .a_pin = DT_INST_GPIO_PIN(0, a_gpios),
- .a_flags = DT_INST_GPIO_FLAGS(0, a_gpios),
- .b_label = DT_INST_GPIO_LABEL(0, b_gpios),
- .b_p... |
notify: cleanup %watch-not-unique cases | ?- -.old
%0
:_ this(state old)
- ?. (~(has by wex.bowl) [/hark our.bowl %hark-store])
+ ?: (~(has by wex.bowl) [/hark our.bowl %hark-store])
~
[(~(watch-our pass:io /hark) %hark-store /updates)]~
==
?. (is-whitelisted:do src.bowl u.entry)
~|("permission denied" !!)
=. clients.u.entry (~(put by clients.u.entry) src.bowl... |
ignore errorcount if force_interface is set | @@ -5629,11 +5629,7 @@ strncpy(pwrq.ifr_name, interfacename, IFNAMSIZ -1);
pwrq.u.freq.flags = IW_FREQ_FIXED;
pwrq.u.freq.m = channelscanlist[cpa];
pwrq.u.freq.e = 0;
-if(ioctl(fd_socket, SIOCSIWFREQ, &pwrq) < 0)
- {
- if(forceinterfaceflag == false) return false;
- return true;
- }
+if(ioctl(fd_socket, SIOCSIWFREQ, &p... |
Fix python module len() implementations
They were all missing the 'self.' prefix when accessing the 'obj'
instance variable, causing the following exception when attempting to
call len() on (for example) a ReplyInfo_RRSet:
File "/usr/lib/python3.7/site-packages/unboundmodule.py", line 377, in __len__
def __len__(self):... | @@ -314,16 +314,16 @@ struct packed_rrset_data {
class RRSetData_RRLen:
def __init__(self, obj): self.obj = obj
def __getitem__(self, index): return _unboundmodule._get_data_rr_len(self.obj, index)
- def __len__(self): return obj.count + obj.rrsig_count
+ def __len__(self): return self.obj.count + self.obj.rrsig_count
... |
Build: Run Coverity on Linux | @@ -222,13 +222,19 @@ jobs:
analyze-coverity:
name: Analyze Coverity
- runs-on: macos-latest
+ runs-on: ubuntu-latest
env:
JOB_TYPE: COVERITY
+ TOOLCHAINS: GCC5
if: github.repository_owner == 'acidanthera' && github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v2
+ - name: Install Dependencies
+ run: |
... |
Interface: Fixes URL message parsing | @@ -209,8 +209,35 @@ export class ChatInput extends Component {
return;
}
let message = [];
- editorMessage.split(' ').map((each) => {
- if (this.isUrl(each)) {
+ let isInCodeBlock = false;
+ let endOfCodeBlock = false;
+ editorMessage.split(/\r?\n/).forEach((line) => {
+ // A line of backticks enters and exits a codeb... |
hal: nrf51 spi1 fix | @@ -512,7 +512,7 @@ hal_spi_init(int spi_num, void *cfg, uint8_t spi_type)
irq_handler = nrf51_spi1_irq_handler;
if (spi_type == HAL_SPI_TYPE_MASTER) {
#if MYNEWT_VAL(SPI_1_MASTER)
- spi->nhs_spi.spim = NRF_SPIM1;
+ spi->nhs_spi.spim = NRF_SPI1;
#else
assert(0);
#endif
|
doc: Add stitched ciphers to EVP_EncryptInit.pod
These ciphers don't appear to be documented anywhere. Given the
performance[1] benefits I think it makes sense to expose them.
[1] | @@ -19,8 +19,8 @@ EVP_CIPHER_CTX_mode, EVP_CIPHER_param_to_asn1, EVP_CIPHER_asn1_to_param,
EVP_CIPHER_CTX_set_padding, EVP_enc_null, EVP_des_cbc, EVP_des_ecb,
EVP_des_cfb, EVP_des_ofb, EVP_des_ede_cbc, EVP_des_ede, EVP_des_ede_ofb,
EVP_des_ede_cfb, EVP_des_ede3_cbc, EVP_des_ede3, EVP_des_ede3_ofb,
-EVP_des_ede3_cfb, EV... |
Remove unused pragma | #ifndef _PH_PHNATINL_H
#define _PH_PHNATINL_H
-#pragma once
-
// This file contains inlined native API wrapper functions. These functions were previously
// exported, but are now inlined because they are extremely simple wrappers around equivalent native
// API functions.
|
cmake: use CLI11_INCLUDE_DIRS variable | @@ -31,7 +31,7 @@ add_library(afu-test INTERFACE)
target_include_directories(afu-test INTERFACE
${OPAE_INCLUDE_PATHS}
${CMAKE_CURRENT_SOURCE_DIR}
- ${CLI11_ROOT}/include
+ ${CLI11_INCLUDE_DIRS}
${spdlog_INCLUDE_DIRS}
)
@@ -39,6 +39,7 @@ target_link_libraries(afu-test INTERFACE
opae-c opae-cxx-core
${spdlog_LIBRARIES}
)... |
mangle: don't change filesz in 50% of cases | @@ -561,7 +561,7 @@ static void mangle_Shrink(run_t* run, bool printable HF_ATTR_UNUSED) {
static void mangle_Resize(run_t* run, bool printable) {
size_t oldsz = run->dynamicFileSz;
- uint64_t v = util_rndGet(0, 16);
+ uint64_t v = util_rndGet(0, 32);
ssize_t newsz = 0;
switch (v) {
@@ -574,6 +574,9 @@ static void mang... |
{AH} test deployment via .travis | @@ -15,7 +15,7 @@ env:
- secure: bTbky3Un19NAl62lix8bMLmBv9IGNhFkRXlZH+B253nYub7jwQwPQKum3ct9ea+XHJT5//uM0B8WAF6eyugpNkPQ7+S7SEH5BJuCt30nv6qvGhSO2AffZKeHEDnfW2kqGrivn87TqeomlSBlO742CD/V0wOIUwkTT9tutd+E7FU=
_deploy_common: &deploy_common
- if: tag IS present
+ if: branch = master AND type = push AND fork = false
install... |
POWER10: Update param.h
Increasing the values of DGEMM_DEFAULT_P and DGEMM_DEFAULT_Q helps
in improving performance ~10% for DGEMM. | @@ -2388,7 +2388,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif
-#if defined(POWER9) || defined(POWER10)
+#if defined(POWER9)
#define SNUMOPT 16
#define DNUMOPT 8
@@ -2426,6 +2426,39 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif
#if defined(POWE... |
removed unnecessary debug statement that didn't work on windows | @@ -871,7 +871,6 @@ void init_chipids (char *dir_to_scan)
if (!dir_to_scan) dir_to_scan = "./";
devicelist = NULL;
- fprintf (stderr, "stlink_chipid_params %ld\n", sizeof (struct stlink_chipid_params));
//dump_chips ();
d = opendir(".");
if (d) {
|
xive: Fix typo and spelling in a comment
This commit fixes a typo and a spelling in a comment about the XIVE set
translate mechanism. | * with one EQ and one IPI. There is also enought EATs to cover all the PHBs.
*
* Similarily, for MMIO access, the BARs support what is called "set
- * translation" which allows tyhe BAR to be devided into a certain
+ * translation" which allows the BAR to be divided into a certain
* number of sets. The VC BAR (ESBs, EN... |
Actor set position codegen | @@ -904,7 +904,9 @@ class ScriptBuilder {
actorSetPosition = (x = 0, y = 0) => {
this._addComment("Actor Set Position");
- this._addComment("NOT IMPLEMENTED");
+ this._setConst("^/(ACTOR + 1)/", x * 8 * 16);
+ this._setConst("^/(ACTOR + 2)/", (y + 1) * 8 * 16);
+ this._actorSetPosition("ACTOR");
this._addNL();
};
|
common/keyboard_8042: Update kblog while holding mutex
i8042_send_to_host can be called from multiple tasks. Make sure we don't
mix up or lose any kblog entries.
BRANCH=none
TEST=Built and saw kblog is still populated. | @@ -252,11 +252,12 @@ static void i8042_send_to_host(int len, const uint8_t *bytes,
int i;
struct data_byte data;
+ /* Enqueue output data if there's space */
+ mutex_lock(&to_host_mutex);
+
for (i = 0; i < len; i++)
kblog_put('s', bytes[i]);
- /* Enqueue output data if there's space */
- mutex_lock(&to_host_mutex);
if... |
Tests: Use `const` qualifier in exception handler | @@ -362,7 +362,7 @@ TEST (key, exceptions)
{
test.setName ("no");
}
- catch (kdb::KeyInvalidName &)
+ catch (kdb::KeyInvalidName const &)
{
succeed_if (test.getName () == "", "not set to noname");
}
@@ -374,7 +374,7 @@ TEST (key, exceptions)
{
test.setName ("no");
}
- catch (kdb::KeyInvalidName &)
+ catch (kdb::KeyInva... |
haskell-debian-stretch: make it verbose to see what is going on.. | @@ -60,9 +60,9 @@ if (NOT BUILD_STATIC)
string (REPLACE " " ";" CABAL_OPTS_SANITIZED ${CABAL_OPTS})
add_custom_command (
OUTPUT ${BINDING_HASKELL_NAME}
- COMMAND ${CABAL_EXECUTABLE} install ${CABAL_OPTS_SANITIZED} --only-dependencies -v0 || 0
- COMMAND ${CABAL_EXECUTABLE} configure ${CABAL_OPTS_SANITIZED} -v0
- COMMAND... |
sys/console: Remove unnecessary prefix from struct members | #include "console/console.h"
#include "console_priv.h"
-#define CONSOLE_HEAD_INC(cr) (((cr)->cr_head + 1) & ((cr)->cr_size - 1))
-#define CONSOLE_TAIL_INC(cr) (((cr)->cr_tail + 1) & ((cr)->cr_size - 1))
+#define CONSOLE_HEAD_INC(cr) (((cr)->head + 1) & ((cr)->size - 1))
+#define CONSOLE_TAIL_INC(cr) (((cr)->tail + 1) &... |
YAwn: Disable memory check for part of YAEP code | #include "memory.hpp"
#include "walk.hpp"
+#ifdef ENABLE_ASAN
+#include <sanitizer/lsan_interface.h>
+#endif
+
using std::cerr;
using std::cout;
using std::endl;
@@ -199,7 +203,13 @@ namespace yawn
*/
int addToKeySet (CppKeySet & keySet, CppKey & parent, string const & filename)
{
+#ifdef ENABLE_ASAN
+ __lsan_disable (... |
Remove un-needed hidden argument | @@ -197,10 +197,6 @@ NSString * const kTSKDefaultReportUri = @"https://overmind.datatheorem.com/trust
#pragma mark TrustKit Implicit Initialization via Library Constructor
-// TRUSTKIT_SKIP_LIB_INITIALIZATION define allows consumers to opt out of the dylib constructor.
-// This might be useful to mitigate integration r... |
idf.py: fix debug extenstion to work with unit tests | @@ -100,9 +100,9 @@ def action_extensions(base_actions, project_path):
_terminate_async_target("gdbgui")
_terminate_async_target("gdb")
- def post_debug(action, ctx, args, block):
+ def post_debug(action, ctx, args, **kwargs):
""" Deal with asynchronous targets, such as openocd running in background """
- if block == 1... |
OpenCoreMisc: Change early logging message | @@ -194,7 +194,7 @@ OcMiscEarlyInit (
if (!EFI_ERROR (Status)) {
DEBUG ((
DEBUG_INFO,
- "OC: Boot timestamp: - %04u.%02u.%02u %02u:%02u:%02u\n",
+ "OC: Boot timestamp - %04u.%02u.%02u %02u:%02u:%02u\n",
BootTime.Year,
BootTime.Month,
BootTime.Day,
@@ -205,7 +205,7 @@ OcMiscEarlyInit (
} else {
DEBUG ((
DEBUG_INFO,
- "O... |
[kernel] force MLCP to allocate interaction blocks in preCompute | @@ -138,6 +138,7 @@ void MLCP::computeDiagonalInteractionBlock(const InteractionsGraph::VDescriptor&
bool MLCP::preCompute(double time)
{
+ _hasBeenUpdated=false;
bool res = LinearOSNS::preCompute(time);
_numerics_problem.n = _n;
_numerics_problem.m = _m;
|
Pass correct arguments to webvr sittingToStanding; | @@ -123,7 +123,7 @@ void lovrHeadsetGetEyePosition(HeadsetEye eye, float* x, float* y, float* z) {
int i = eye == EYE_LEFT ? 0 : 1;
emscripten_vr_get_eye_offset(i, x, y, z);
float m[16];
- mat4_multiply(mat4_identity(m), emscripten_vr_get_sitting_to_standing_matrix(i));
+ mat4_multiply(mat4_identity(m), emscripten_vr_g... |
doc: Add kdb command renames to release news | @@ -184,6 +184,7 @@ you up to date with the multi-language support provided by Elektra.
- Checks for `kdbCommit` have been added to [kdb check](../help/kdb-check.md). _(Vid Leskovar)_
- add PID file config setting for kdb-run-rest-frontend _(Markus Raab)_
- Added `kdb showmeta` command which prints out all metadata alo... |
Fix having flow out of an empty tank | @@ -437,40 +437,12 @@ void tankstatus(Project *pr, int k, int n1, int n2)
tank = &net->Tank[i];
if (tank->A == 0.0) return;
- // Find head difference across link
- h = hyd->NodeHead[n1] - hyd->NodeHead[n2];
-
- // If tank is full, then prevent flow into it
if (hyd->NodeHead[n1] >= tank->Hmax - hyd->Htol && !tank->CanOv... |
Re-enable CancelResume test without flakey data size comparison checks
Checking data sizes in NSURL::NSURLSession_DownloadTaskWithURL_WithCancelResume would intermittently cause failures, so re-enabling this test with just state checks. This is not going to catch as many types of regressions as the previous implementat... | @@ -654,10 +654,6 @@ public:
* Test to verify a download task call can be successfully made and can be cancelled/resumed at runtime.
*/
TEST_METHOD(DownloadTaskWithURL_WithCancelResume) {
- BEGIN_TEST_METHOD_PROPERTIES()
- TEST_METHOD_PROPERTY(L"Ignore", L"true")
- END_TEST_METHOD_PROPERTIES()
-
NSURLSessionDownloadTas... |
masternode gui | @@ -249,8 +249,8 @@ bool CActiveMasternode::Register(std::string strService, std::string strKeyMaste
return false;
}
- if(!GetMasterNodeVin(vin, pubKeyCollateralAddress, keyCollateralAddress, txHash, strOutputIndex)) {
- errorMessage = "could not allocate vin";
+ if(!GetMasterNodeVin(vin, pubKeyCollateralAddress, keyCo... |
Better newSound error messages; | @@ -67,7 +67,8 @@ static int l_lovrDataNewRasterizer(lua_State* L) {
}
static int l_lovrDataNewSound(lua_State* L) {
- if (lua_type(L, 1) == LUA_TNUMBER) {
+ int type = lua_type(L, 1);
+ if (type == LUA_TNUMBER) {
uint64_t frames = luaL_checkinteger(L, 1);
SampleFormat format = luax_checkenum(L, 2, SampleFormat, "f32")... |
Fix skipping OpenSSL tests | @@ -40,7 +40,7 @@ $TPKG -a ../.. fake 31-load-pyldnsx.tpkg
$TPKG -a ../.. fake 32-unbound-regression.tpkg
$TPKG -a ../.. fake 999-compile-nossl.tpkg
command -v indent || $TPKG -a ../.. fake codingstyle.tpkg
-grep -q '^#define HAVE_SSL 1' ../ldns/config.h || (
+grep -q '^#define HAVE_SSL ' ../ldns/config.h || (
$TPKG -a... |
Use static asserts to verify c0 kvset cheaps can accomodate large kvs values... | #include "c0_cursor.h"
#include "c0_kvsetm.h"
+/* The minimum c0 cheap size should be at least 2MB and large enough to accomodate
+ * at least one max-sized kvs value plus associated overhead.
+ */
+_Static_assert(HSE_C0_CHEAP_SZ_MIN >= (2ul << 20), "min c0 cheap size too small");
+_Static_assert(HSE_C0_CHEAP_SZ_MIN >=... |
Space View iterator: add more checks | @@ -228,7 +228,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args)
/* Orthographic not supported. This happens when Nr (camera altitude) is missing */
if (grib_is_missing(h, sNrInRadiusOfEarth, &ret)) {
- grib_context_log(h->context, GRIB_LOG_ERROR, "Orthographic view (Nr missing) not suppor... |
Parser: Don't touch tokens after parsing the lambda body.
It's already checked for being '}', so that will never trigger. The
other (a token grab) is not used. | @@ -2722,9 +2722,6 @@ lily_var *lily_parser_lambda_eval(lily_parse_state *parser,
root_result = parse_lambda_body(parser, expect_type);
fini_expr_state(parser);
- NEED_CURRENT_TOK(tk_right_curly)
- lily_lexer(lex);
-
if (root_result != NULL)
lily_tm_insert(parser->tm, tm_return, root_result);
|
doc: fix the URL for projectacrn.github.io repo
Fix the URL used to clone the projectacrn.github.io repo. | @@ -265,7 +265,7 @@ directly to the upstream repo rather than to a personal forked copy):
.. code-block:: bash
cd ~/projectacrn
- git clone https://projectacrn/projectacrn.github.io.git
+ git clone https://github.com/projectacrn/projectacrn.github.io.git
Then, after you've verified the generated HTML from ``make html``... |
fix incorrect invocation of cn_metrics.py in cn.tree.metrics | @@ -101,7 +101,7 @@ fi
set +u
get_tree_shape () {
- local metrics_cmd1=($(which cn_metrics.py) "$1" "$2")
+ local metrics_cmd1=($(which cn_metrics.py) -C "$1" "$2")
local metrics_cmd2=($(which cn_metrics) "$1" "$2")
local out="$TMP"/shape
|
check_config.h: make TLS1.3 requirements verification more readable | #endif
/* TLS 1.3 requires at least one ciphersuite, so at least SHA-256 or SHA-384 */
-#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && \
- !( ( defined(PSA_WANT_ALG_SHA_256) || defined(PSA_WANT_ALG_SHA_348) ) && \
- ( defined(MBEDTLS_USE_PSA_CRYPTO) || ( defined(MBEDTLS_MD_C) && ( defined(MBEDTLS_SHA256_C) || defined(MBEDTLS... |
CONNECT: cancel hostinfo_getaddr on error (especially timeout).
A timeout while waiting for dns resolution can cause `on_error` to send an
error response, and if dns resolution happens to finish right afterwards then
`on_getaddr` will get called and it will try to send another error response. | @@ -61,6 +61,10 @@ static void start_connect(struct st_connect_request_t *creq);
static void on_error(struct st_connect_request_t *creq, const char *errstr)
{
h2o_timer_unlink(&creq->timeout);
+ if (creq->getaddr_req != NULL) {
+ h2o_hostinfo_getaddr_cancel(creq->getaddr_req);
+ creq->getaddr_req = NULL;
+ }
if (creq->... |
nvbios/power/unk90: there is a ver 0x20 as well | @@ -2148,6 +2148,7 @@ int envy_bios_parse_power_unk90(struct envy_bios *bios) {
bios_u8(bios, unk90->offset + 0x0, &unk90->version);
switch(unk90->version) {
case 0x10:
+ case 0x20:
err |= bios_u8(bios, unk90->offset + 0x1, &unk90->hlen);
err |= bios_u8(bios, unk90->offset + 0x2, &unk90->rlen);
err |= bios_u8(bios, unk... |
Add CPPFLAGS to REAL_CFLAGS | @@ -41,7 +41,7 @@ CXX:=$(shell sh -c 'type $${CXX%% *} >/dev/null 2>/dev/null && echo $(CXX) || ec
OPTIMIZATION?=-O3
WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings
DEBUG_FLAGS?= -g -ggdb
-REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG_FLAGS)
+REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CPPFLAGS) $(CFLAG... |
build: always build packages | @@ -133,9 +133,8 @@ stage("Full builds") {
parallel generate_full_build_stages()
}
-// build debian packages if on master
-// TODO replace true with env.ghprbSourceBranch=="master"
-maybeStage("Build Debian Packages", true) {
+// build debian packages + upload if on master
+stage("Build Debian Packages") {
parallel gen... |
WResolver: Remove useless `ifdef` | - infos/provides = resolver
- infos/needs =
- infos/placements = rollback getresolver setresolver
-#ifdef _WIN32
- infos/status = recommended maintained nodep configurable unfinished nodoc
-#else
-- infos/status = recommended maintained nodep configurable unfinished nodoc
-#endif
- infos/description = Returns success o... |
Changelog: Document VoiceOver changes | @@ -50,6 +50,8 @@ OpenCore Changelog
- Updated OpenShell `devices` command to support misaligned device names returned by some Apple firmware
- Added `(dmg)` suffix to DMG boot options in OpenCanopy
- Added identifiers for Rocket Lake and Tiger Lake CPUs
+- Added VoiceOver 'disk image' indication
+- Fixed VoiceOver ind... |
After allocating chunks set the fields in a consistent way.
This removes two assignments for the flags field being done
twice and adds one, which was missing.
Thanks to Felix Weinrank for reporting the issue he found
by using fuzz testing of the userland stack. | #ifdef __FreeBSD__
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD: head/sys/netinet/sctp_output.c 339027 2018-09-30 21:31:33Z tuexen $");
+__FBSDID("$FreeBSD: head/sys/netinet/sctp_output.c 339040 2018-10-01 13:09:18Z tuexen $");
#endif
#include <netinet/sctp_os.h>
@@ -9475,14 +9475,15 @@ sctp_queue_op_err(struct sctp_tcb ... |
moved appveyor FX3SDK to downloads.myriadrf.org | @@ -30,7 +30,7 @@ install:
7z x wxWidgets-3.1.0-headers.7z -oC:\\projects\\deps\\wxWidgets > nul
- appveyor DownloadFile https://github.com/jocover/LimeSuite/releases/download/fx3sdk/FX3SDK.zip FX3SDK.zip
+ appveyor DownloadFile http://downloads.myriadrf.org/project/limesuite/appveyor/FX3SDK.zip FX3SDK.zip
7z x FX3SDK.... |
Change calculateSpecificationToken() to not take NULL terminator into account. | @@ -58,8 +58,9 @@ kdb_boolean_t calculateSpecificationToken (char * hash_string, KeySet * ks, Key
* (e.g. tools/kdb/gen.cpp passes keys in cascading namespace while src/libs/highlevel/elektra.c passes keys in spec namespace).
*/
keySetNamespace (cascadingKey, KEY_NS_CASCADING);
- // Feed key name into sha_256_write()
-... |
Lower deployment target | GENERATE_PKGINFO_FILE = YES;
INFOPLIST_FILE = TrustKit/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- IPHONEOS_DEPLOYMENT_TARGET = 10.0;
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)... |
add manjaro theme | -static const char *fonts[] = {"Monaco-Nerd-Font-Complete-Mono:size=12"};
-static const char dmenufont[] = "Monaco-Nerd-Font-Complete-Mono:size=12";
-static const char col_gray1[] = "#282a36"; /* top bar d */
-static const char col_gray2[] = "#bd93f9";/*unfocused fonts d */
-static const char col_gray3[] = "#6272a4";/*... |
CI: Temperaroily disable `deploy_docs_production` since `needs` has a bug which will be fixed in GitLab 13.4 | @@ -86,24 +86,24 @@ deploy_docs_preview:
DOCS_DEPLOY_PATH: "$DOCS_PATH"
DOCS_DEPLOY_URL_BASE: "https://$CI_DOCKER_REGISTRY/docs/esp-idf"
-# deploy docs to production webserver
-deploy_docs_production:
- # The DOCS_PROD_* variables used by this job are "Protected" so these branches must all be marked "Protected" in Gitl... |
Fixed sorting on hits and visitors when larger than INT_MAX. | @@ -155,8 +155,8 @@ cmp_num_desc (const void *a, const void *b) {
const GHolderItem *ia = a;
const GHolderItem *ib = b;
- int va = ia->metrics->hits;
- int vb = ib->metrics->hits;
+ uint64_t va = ia->metrics->hits;
+ uint64_t vb = ib->metrics->hits;
return (va < vb) - (va > vb);
}
@@ -167,8 +167,8 @@ cmp_num_asc (const... |
improve saved animation | @@ -113,7 +113,7 @@ export default class TreeItem extends React.Component {
this.setState({ saved: true })
setTimeout(() => {
this.setState({ saved: false })
- }, 1000)
+ }, 900)
}, 500),
})
}}
|
Avoiding compilation on systems with no working shared memory. | @@ -314,6 +314,10 @@ nxt_port_new_port_mmap(nxt_task_t *task, nxt_process_t *process,
nxt_errno);
}
+#else
+
+#error No working shared memory implementation.
+
#endif
if (nxt_slow_path(ftruncate(fd, PORT_MMAP_SIZE) == -1)) {
|
mfu_flist_walk: added more error messages
Added a few error messages to places with TODO | @@ -265,7 +265,8 @@ static void walk_getdents_create(CIRCLE_handle* handle)
mfu_file_t* mfu_file = *CURRENT_PFILE;
int status = mfu_file_lstat(path, &st, mfu_file);
if (status != 0) {
- /* TODO: print error */
+ MFU_LOG(MFU_LOG_ERR, "Failed to stat: '%s' (errno=%d %s)",
+ path, errno, strerror(errno));
return;
}
@@ -31... |
doc: Editorial changes to hypercall hld | @@ -13,26 +13,26 @@ The application binary interface (ABI) of ACRN hypercalls is defined as follows.
- A guest VM executes the ``vmcall`` instruction to trigger a hypercall.
-- Input parameters of a hypercall includes:
+- Input parameters of a hypercall include:
- - An hypercall ID in register ``R8``, which specifies t... |
Fix: BLE test framework
Adding a test that clean up all previously bonded devices | @@ -526,6 +526,7 @@ TEST_GROUP_RUNNER( Full_BLE )
RUN_TEST_CASE( Full_BLE, BLE_CreateAttTable_StartService );
RUN_TEST_CASE( Full_BLE, BLE_Advertising_SetProperties );//@TOTO, incomplete
+ RUN_TEST_CASE( Full_BLE, BLE_Connection_RemoveAllBonds );
RUN_TEST_CASE( Full_BLE, BLE_Advertising_SetAvertisementData );//@TOTO, i... |
HLS: Remove comment | @@ -196,7 +196,7 @@ void action_wrapper(snap_membus_t *din_gmem,
(ap_uint<MEMDW> *)(T1_type == HOST_DRAM) ?
(dout_gmem + (T1_address >> ADDR_RIGHT_SHIFT)) :
(d_ddrmem + (T1_address >> ADDR_RIGHT_SHIFT)),
- T1_size); */
+ T1_size);
memcpy((snap_membus_t *)__table2,
(snap_membus_t *)(T2_type == HOST_DRAM) ?
|
Fix omission of daylight savings time in mktime
Since with daylight savings times, certain times
are ambiguous (the hours before and after the switch), mktime
needs to allow reading a dst flag. | @@ -673,6 +673,18 @@ static Janet os_date(int32_t argc, Janet *argv) {
return janet_wrap_struct(janet_struct_end(st));
}
+static int entry_getdst(Janet env_entry) {
+ if (janet_checktype(env_entry, JANET_TABLE)) {
+ JanetTable *entry = janet_unwrap_table(env_entry);
+ return janet_truthy(janet_table_get(entry, janet_ck... |
Disable -Wstringop-truncation also for GCC 8. | @@ -167,12 +167,12 @@ static char * parson_strndup(const char *string, size_t n) {
return NULL;
}
output_string[n] = '\0';
-#if __GNUC__ > 8
+#if __GNUC__ >= 8
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstringop-truncation"
#endif
strncpy(output_string, string, n);
-#if __GNUC__ > 8
+#if __GNUC__ >= ... |
user_version.h: use ESP_SDK* constants
Derive NODE_VERSION by concatenating string constants. | #ifndef __USER_VERSION_H__
#define __USER_VERSION_H__
-#define NODE_VERSION_MAJOR 2U
-#define NODE_VERSION_MINOR 1U
-#define NODE_VERSION_REVISION 0U
-#define NODE_VERSION_INTERNAL 0U
+#include "version.h" /* ESP firmware header */
+
+#define NODE_VERSION_MAJOR ESP_SDK_VERSION_MAJOR
+#define NODE_VERSION_MINOR ESP_SDK_... |
modified json for update release archive file. | },
"url": "https://github.com/ROBOTIS-GIT/OpenCR/releases/download/1.4.0/opencr_core_1.4.0.tar.bz2",
"archiveFileName": "opencr_core_1.4.0.tar.bz2",
- "checksum": "SHA-256:d258f298f9934f7da14cdd2548dfb67ec17246f0ac82d31df11700a0ed2ef919",
- "size": "19272596",
+ "checksum": "SHA-256:c2450e112784cf4774d830669a41d20470ed... |
nimble/gap: Add missing listener callback call on Scan Request | @@ -755,15 +755,18 @@ ble_gap_scan_req_rcvd(uint8_t instance, uint8_t scan_addr_type,
ble_gap_event_fn *cb;
void *cb_arg;
- ble_gap_slave_extract_cb(instance, &cb, &cb_arg);
- if (cb != NULL) {
memset(&event, 0, sizeof event);
event.type = BLE_GAP_EVENT_SCAN_REQ_RCVD;
event.scan_req_rcvd.instance = instance;
event.scan... |
Keep consistency order. | @@ -802,8 +802,8 @@ static int ssl_tls1_3_process_server_finished( mbedtls_ssl_context *ssl )
*/
static int ssl_tls1_3_write_client_certificate( mbedtls_ssl_context *ssl )
{
- mbedtls_ssl_handshake_set_state( ssl, MBEDTLS_SSL_CLIENT_CERTIFICATE_VERIFY );
MBEDTLS_SSL_DEBUG_MSG( 1, ( "%s hasn't been implemented", __func_... |
client: Log HTTP stream close | @@ -2009,6 +2009,10 @@ int Client::http_stream_close(int64_t stream_id, uint64_t app_error_code) {
}
if (auto it = streams_.find(stream_id); it != std::end(streams_)) {
+ if (!config.quiet) {
+ std::cerr << "HTTP/3 stream " << stream_id << " closed with error code "
+ << app_error_code << std::endl;
+ }
streams_.erase(... |
'Correct' renaming of 'Quick Start Guide' to 'Using the CLI', + inbound links | ---
-title: Quick Start Guide
+title: Using the CLI
---
-## Quick Start Guide
+## Using the CLI
---
### Explore the CLI
@@ -25,7 +25,6 @@ scope curl https://google.com
>> should see output of curl here <<
```
-
### Let's explore captured data
To see the monitoring and visualization features AppScope offers, exercise so... |
fixed walking flag | @@ -17327,7 +17327,7 @@ static int common_anim_series(entity *ent, int arraya[], int maxa, int forcemode
if (forcemode || normal_find_target(iAni, 0)) //Opponent in range of current animation?
{
ent_set_anim(ent, iAni, 0); //Set animation.
- if ( defaulta == ANI_WALK || defaulta == ANI_UP || defaulta == ANI_DOWN ) ent-... |
syscall_schedule: dereference of invalid current caused crash under smp; place it before thread_pause | @@ -2513,8 +2513,8 @@ static void syscall_schedule(context f, u64 call)
current_cpu()->state = cpu_kernel;
syscall_debug(f);
} else {
- thread_pause(current);
enqueue(runqueue, ¤t->deferred_syscall);
+ thread_pause(current);
runloop();
}
}
|
Fix error type of lms_import_public_key
Was returning an incorrect error when bad public key sizes were input | @@ -235,9 +235,9 @@ int mbedtls_lms_import_public_key( mbedtls_lms_public_t *ctx,
mbedtls_lms_algorithm_type_t type;
mbedtls_lmots_algorithm_type_t otstype;
- if( key_size < MBEDTLS_LMS_PUBLIC_KEY_LEN(ctx->params.type) )
+ if( key_size != MBEDTLS_LMS_PUBLIC_KEY_LEN(ctx->params.type) )
{
- return( MBEDTLS_ERR_LMS_BUFFER... |
Fix for selection text. | @@ -1226,13 +1226,21 @@ implements SensorEventListener
//Log.v("VIEW","Run setPopupSelection " + (activity.mIncrementalText ?"inc ":"smart ") + inSel0 + "..." + inSel1 );
if (inSel0!=inSel1)
activity.mKeyInTextView.setSelection(inSel0,inSel1);
- else
- activity.mKeyInTextView.setSelection(inSel0);
+ else {
+ int select... |
Migrate tile colors from scene entity to background entity | @@ -65,6 +65,7 @@ const migrateProject = project => {
if (release === "6") {
data = migrateFrom200r6To200r7Events(data);
data = migrateFrom200r6To200r7Actors(data);
+ data = migrateFrom200r6To200r7Backgrounds(data);
data = migrateFrom200r6To200r7Scenes(data);
data = migrateFrom200r6To200r7Settings(data);
release = "7";... |
fixed sprite corruption, third attempt :) | @@ -229,9 +229,13 @@ static void copySelection(Sprite* sprite)
static void processSelectCanvasMouse(Sprite* sprite, s32 x, s32 y)
{
+ tic_mem* tic = sprite->tic;
+
tic_rect rect = {x, y, CANVAS_SIZE, CANVAS_SIZE};
const s32 Size = CANVAS_SIZE / sprite->size;
+ bool endDrag = false;
+
if(checkMousePos(&rect))
{
setCurso... |
BindBufferMemory, BindImageMemory - Return VK_ERROR_UNKNOWN for unknown allocation type | @@ -15598,7 +15598,7 @@ VkResult VmaAllocator_T::BindBufferMemory(
VkBuffer hBuffer,
const void* pNext)
{
- VkResult res = VK_SUCCESS;
+ VkResult res = VK_ERROR_UNKNOWN;
switch(hAllocation->GetType())
{
case VmaAllocation_T::ALLOCATION_TYPE_DEDICATED:
@@ -15623,7 +15623,7 @@ VkResult VmaAllocator_T::BindImageMemory(
Vk... |
landscape: move transcluded comments to new render
Fixes urbit/landscape#814
Fixes urbit/landscape#813 | @@ -4,6 +4,7 @@ import ChatMessage from "../chat/components/ChatMessage";
import { Association, GraphNode, Post, Group } from "@urbit/api";
import { useGroupForAssoc } from "~/logic/state/group";
import { MentionText } from "~/views/components/MentionText";
+import { GraphContentWide } from '~/views/landscape/component... |
rework layout of "create new key" dialog | @@ -136,8 +136,8 @@ export default class AddDialog extends Component {
onRequestClose={this.handleClose}
>
<h1>Creating new {arrayKeyLength ? 'array ' : ''}key at <b>{path}</b></h1>
- <div style={{ display: 'flex', alignItems: 'center' }}>
- <div style={{ flex: 'initial' }}>
+ <div style={{ display: 'flex' }}>
+ <div s... |
Remove leak. | @@ -1029,9 +1029,6 @@ scs_int SCS(solve)(ScsWork *w, ScsSolution *sol, ScsInfo * info) {
scs_int l = w->m + w->n + 1;
const ScsData * d = w->d;
const ScsCone * k = w->k;
- /* TODO delete me */
- scs_int* XXX = scs_calloc(10, sizeof(scs_int));
- XXX[0] = 1;
info->setup_time = w->setup_time;
/* initialize ctrl-c support ... |
README.webp_js: update Emscripten.cmake note
recent versions of the sdk don't set the EMSCRIPTEN environment
variable; provide a workaround. | @@ -17,6 +17,10 @@ using Emscripten and CMake.
- make sure the file $EMSCRIPTEN/cmake/Modules/Platform/Emscripten.cmake is
accessible. This is the toolchain file used by CMake to invoke Emscripten.
+ If $EMSCRIPTEN is unset search for Emscripten.cmake under $EMSDK and set
+ $EMSCRIPTEN accordingly, for example:
+ unix-... |
vtep: correctly bring vtep lport up in SBDB
Fixes: ("binding: Correctly set Port_Binding.up for container/virtual ports.")
Acked-by: Mark Michelson | @@ -109,14 +109,12 @@ update_pb_chassis(const struct sbrec_port_binding *port_binding_rec,
port_binding_rec->chassis->name,
chassis_rec->name);
}
-
sbrec_port_binding_set_chassis(port_binding_rec, chassis_rec);
- if (port_binding_rec->n_up) {
+ } else if (port_binding_rec->n_up) {
bool up = true;
sbrec_port_binding_set... |
grid: bump desk from ui | import { pick } from 'lodash-es';
import React, { useCallback } from 'react';
-import { kilnSuspend } from '@urbit/api/hood';
+import { kilnBump } from '@urbit/api/hood';
import { AppList } from '../../components/AppList';
import { Button } from '../../components/Button';
import { Dialog, DialogClose, DialogContent, Di... |
remove multipath compilation warning | @@ -7,7 +7,7 @@ static __attribute__((always_inline)) picoquic_path_t *schedule_path_rtt(picoqui
if (retransmit_p && from_path && reason) {
if (strncmp(PROTOOPID_NOPARAM_RETRANSMISSION_TIMEOUT, reason, 23) != 0) {
/* Fast retransmit or TLP, stay on the same path! */
- return (protoop_arg_t) from_path;
+ return from_pat... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.