Browse Source

[bsp]Fixed a stack overflow bug in drv_crypto.c

Added if null before used.
David Lin 5 years ago
parent
commit
45ae555a0b
1 changed files with 5 additions and 0 deletions
  1. 5 0
      bsp/stm32/libraries/HAL_Drivers/drv_crypto.c

+ 5 - 0
bsp/stm32/libraries/HAL_Drivers/drv_crypto.c

@@ -168,6 +168,11 @@ static rt_err_t _crypto_create(struct rt_hwcrypto_ctx *ctx)
     case HWCRYPTO_TYPE_RNG:
     case HWCRYPTO_TYPE_RNG:
     {
     {
         RNG_HandleTypeDef *hrng = rt_calloc(1, sizeof(RNG_HandleTypeDef));
         RNG_HandleTypeDef *hrng = rt_calloc(1, sizeof(RNG_HandleTypeDef));
+        if (RT_NULL == hrng)
+        {
+            res = -RT_ERROR;
+            break;
+        }
 
 
         hrng->Instance = RNG;
         hrng->Instance = RNG;
         HAL_RNG_Init(hrng);
         HAL_RNG_Init(hrng);