Gabríel Arthúr Pétursson

Results 11 issues of Gabríel Arthúr Pétursson

Can a `ipset` service be added to restore `ipset` configuration? I took a quick stab at making a service definition, based on the one provided by Arch GNU/Linux. ``` [Unit]...

kind/enhancement
priority/P2
area/usability
low hanging fruit
component/distro
team/os

Are we at a point where we can remove GHC 7.8 support from sdl2? Are there any users who are still stuck on that GHC version?

enhancement

The idea is to move SDLException and the associated error checks of SDL's functions' return values to the low-level bindings (`SDL.Raw` and `Graphics.UI.SDL`). Advantages include: - The user does not...

enhancement
question

Hi, The JSON schema validator incorrectly accepts the JSON strings "true" and "false" for booleans. Example schema: ```json { "$schema": "https://json-schema.org/draft/2019-09/schema", "type": "boolean" } ``` Example input: ```json "true" ```...

Check out the following snippet: https://go.dev/play/p/FkEAZlnbd-E The indentation is set to a single tab (`"\t"`), however, the printed output uses two tabs for indentation. Only one is expected. --- ```go...

bug
good first issue
internally-reviewed

https://github.com/graphql-go/graphql/blob/09272f35006712d597c0446258874ce7ff8919fb/schema-kitchen-sink.graphql#L61 The statement `extend type Foo @onType {}` is invalid -- the [grammar](https://spec.graphql.org/June2018/#sec-Object-Extensions) does not allow an empty `FieldsDefinition`.

The [specification](https://spec.graphql.org/October2021/#sel-HAHlBLDBABAB0B7gY) states that: > A Non-Null type must not wrap another Non-Null type. In the specification we see the type `[Int!]!` used in [an example](https://spec.graphql.org/October2021/#sel-KAHlBNJDZBAABABHu0Z), which is a non-null...

`Esys_Initialize` initializes the TCTI: https://github.com/tpm2-software/tpm2-tss/blob/9f336a5064a0295608ca0e7a4d70c4db18664a37/src/tss2-esys/esys_context.c#L71-L75 The function `Tss2_TctiLdr_Initialize` (via `Tss2_TctiLdr_Initialize_Ex`) allocates memory that is not implicitly freed on failure: https://github.com/tpm2-software/tpm2-tss/blob/9f336a5064a0295608ca0e7a4d70c4db18664a37/src/tss2-tcti/tctildr.c#L521-L528 When `Tss2_TctiLdr_Initialize` returns after a failure, the `cleanup_return` in `Esys_Initialize`...

The `varlinkctl` utility in systemd supports fork+execve'ing a process rather than utilizing the traditional method of connecting to an existing UNIX socket. When invoking an executable in this manner, it...

### I did this The documentation has this to say about `CURLWS_CONT`: > CURLWS_CONT > This is not the final fragment of the message, it implies that there is another...