-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reed-Solomon (zfec): fixed fec_new fail
With current zfec code, fec_init() needs to be called prior to fec_new(), otherwise the later one returns NULL. \+ updated submodule to the current zfec version (requiring fec_init(); but UG will compile with the older zfec version as well)
- Loading branch information
1 parent
1cbb716
commit 2af4ace
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule zfec
updated
27 files
+0 −51 | .appveyor.yml | |
+78 −0 | .circleci/config.yml | |
+148 −0 | .circleci/lib.sh | |
+1 −0 | .envrc | |
+124 −33 | .github/workflows/build.yml | |
+24 −26 | .github/workflows/test.yml | |
+0 −19 | .travis.yml | |
+2 −7 | MANIFEST.in | |
+8 −12 | README.rst | |
+0 −3 | Setup.lhs | |
+93 −0 | benchmark-zfec/Main.hs | |
+6 −0 | changelog | |
+74 −30 | fec.cabal | |
+164 −0 | flake.lock | |
+44 −0 | flake.nix | |
+355 −197 | haskell/Codec/FEC.hs | |
+144 −48 | haskell/test/FECTest.hs | |
+0 −55 | misc/build_helpers/run_trial.py | |
+0 −153 | misc/build_helpers/show-tool-versions.py | |
+0 −21 | misc/windows-build.cmd | |
+7 −9 | setup.cfg | |
+2 −8 | setup.py | |
+2 −2 | tox.ini | |
+3 −1 | zfec/_fecmodule.c | |
+36 −11 | zfec/fec.c | |
+12 −0 | zfec/fec.h | |
+31 −11 | zfec/test/test_zfec.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters