Egor Budyukin

Results 9 issues of Egor Budyukin

Removed some minor dead assignments and initializations detected by static analyzer.

### Database name all ### WAL-G Version master ### Describe your problem Checking with a Svace static analyzer highlights possible handle leak at Encrypt function here: https://github.com/wal-g/wal-g/blob/778fde37a650bd07bbdf823c8ed0ab6ef111463e/internal/storagetools/copy_object_handler.go#L21-L27 If there is...

bug
good first issue

As far as I can see in this block of code, 'if (state)' implies that state may be returned as NULL, in which case code execution resumes with no appending...

I stumbled across this issue with a static analyzer. If src is NULL, but srclen is not, there is no continue statement like in a preceding block: https://github.com/tds-fdw/tds_fdw/blob/8ac2e0b6910aed785469b0ca54b046b7a4130c8e/src/tds_fdw.c#L1931-L1936 This may...

**Describe the issue** A static analysis tool highlighted possible dereferences at following functions: /keepalived/vrrp/vrrp.c, open_sockpool_socket: 1) sock->mcast_daddr is used at 2800 after being checked at 2793; 2) sock->ifp is used...

**Describe the issue** A static analysis tool flagged usage of fp pointer at /lib/rttables.c:621 as a potential issue, since popen may return NULL on failed memory allocation. **To Reproduce** Is...

**Describe the issue** config_save_dir var is used in save_config func, where it is written into buf[128] array. Other strings that get written along with it only allow filepath to be...

### Tool Name and Version Svace-4.0.250415 ### Code Report ```plain 1. /src/backend.c:2131 After having been compared to a NULL value at backend.c:2102, pointer 'srv' is passed as 1st parameter in...

type: code-report