Hi,
I was able to found the issue and fix it.
It only happens with coupons restricted to categories with products with characteristics.
Change the line:
if(isset($product->cart_product_parent_id) && $product2->cart_product_id == $product->cart_product_parent_id && $product2->product_id == $productid[0]) {
to:
if(!empty($product->cart_product_parent_id) && $product2->cart_product_id == $product->cart_product_parent_id && $product2->product_id == $productid[0]) {
in the file administrator/components/com_hikashop/classes/discount.php and that will fix the problem.