You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build: use cmake variable magic instead of `cmake` (fluent#2048)
Some Windows systems do not set PATH to cmake.exe. For this reason,
invoking cmake can sometimes fail with an error "unrecognized
command: cmake".
Work around that by using CMAKE_COMMAND that contains an absolute
path to cmake.exe.
Signed-off-by: Fujimoto Seiji <fujimoto@clear-code.com>
gzip: fix wrong usage of address when calculating available size
flb_gzip_compress() calculate strm.avail_out while compressing the
buffer. However, it wrongly uses `out_data` which is argument to this
function and likely to be an address of local variable in stack. This
should be `out_buf` which is the start address and to which `pb` belongs
to.
Signed-off-by: Lee Byeoksan <lee.byeoksan+github@gmail.com>