kamby icon indicating copy to clipboard operation
kamby copied to clipboard

Kamby Language

Results 4 kamby issues
Sort by recently updated
recently updated
newest added

``` [root@fedora kamby]# make clang -fsanitize=address,undefined -c -fpic -o kamby.o kamby.c clang -fsanitize=address,undefined -shared -o libkamby.so kamby.o rm kamby.o clang -fsanitize=address,undefined -o kamby main.c kamby.c [root@fedora kamby]# make test clang...

Hi! There are many places (e.g. [here](https://github.com/henriquegogo/kamby/blob/master/kamby.c#L22)) where the code copies a string by computing strlen() of a string, mallocs that size, and copies the contents with strcpy. However, this...

Steps to reproduce y1 := 'Lorem Ipsum' y2 := 'Lorem Ipsim' y1 + y2