Skip to content

issues Search Results · repo:vurtun/lib language:C

Filter by

29 results
 (83 ms)

29 results

invurtun/lib (press backspace or delete to remove)

https://github.com/vurtun/lib/blob/5a3f3aba052e63ffae8eb0214c6bb8ffffedea3c/sdefl.h#L735 Need to add the following code before calling of sdefl_compr: s- seq_cnt = 0;
  • vmpsoft
  • Opened 
    8 days ago
  • #58

Hi, The function zsinflate() overflows the user s output buffer when it is too short, de facto ignoring the cap parameter which indicates the user s buffer size. The net result is memory corruption in ...
  • lelegard
  • 2
  • Opened 
    on Mar 14
  • #57

Line 176 seems to be using a C++ cast (or whatever it is called) which fails to compile when compiling as C code. The error is reported as: sinfl.h(176,10): error C2143: syntax error: missing ; before ...
  • cdmaczane
  • 1
  • Opened 
    on Feb 16
  • #52

(in json.h, dc54ba5) line 1363: toks = (toks + 1) + toks[1].sub; should be toks = (toks + 2) + toks[1].sub; When there are nested objects or arrays, the pointer was not jumping to the actual next key/val ...
  • enemymouse
  • Opened 
    on Jun 6, 2024
  • #50

The documentation of scheduler_add method said that: /* this function adds a task into the scheduler to execute and directly returns - if the pipe is not full. Otherwise the task is run directly. Should ...
  • giovancris
  • Opened 
    on Apr 17, 2024
  • #49

Today I tried the latest update and I got a crash when trying to compress some data. It happens when calling zdeflate(), I attach the crash line and call-stack for convenience. It happens for different ...
  • raysan5
  • 5
  • Opened 
    on Jul 12, 2023
  • #45

To reproduce, run gcc -fsanitize=address test.c ./a.out on this file: #define SDEFL_IMPLEMENTATION #include extern/sdefl.h int main() { const unsigned char input[384] = { 0x00, 0xb8, ...
  • zeux
  • 1
  • Opened 
    on Jun 16, 2023
  • #42

This computation: int a = 128 + (len * 110) / 100; overflows when len is more than ~19 MB. I assume int a = 128 + len + len / 10; would work better here?
  • zeux
  • 1
  • Opened 
    on Jun 16, 2023
  • #41

Recently I found a very weird issue while generating PNG files with my rpng library that uses sdefl for deflate stream generation. It worked very well with most image file generation but I found a very ...
  • raysan5
  • 7
  • Opened 
    on May 29, 2023
  • #40

When making calls to sdeflate() for a variety of in-memory buffers for compression-testing, one of my test buffers (~3MB) always triggers the assert() in sdefl_seq(). I can t find anything special about ...
  • codeslinger-dev
  • 3
  • Opened 
    on Jan 11, 2023
  • #39
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue search results · GitHub