فهرست منبع

utils: convert to memory logging helper

Pantelis Kolatsis 2 سال پیش
والد
کامیت
89927295f2
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/modules/utils/xcap_auth.c

+ 2 - 2
src/modules/utils/xcap_auth.c

@@ -416,12 +416,12 @@ int get_rules_doc(str* user, str* domain, int type, str** rules_doc)
 
 	doc= (str*)pkg_malloc(sizeof(str));
 	if (doc== NULL) {
-		ERR_MEM(PKG_MEM_STR);
+		PKG_MEM_ERROR;
 	}
 	doc->s= (char*)pkg_malloc(body.len* sizeof(char));
 	if (doc->s== NULL) {
 		pkg_free(doc);
-		ERR_MEM(PKG_MEM_STR);
+		PKG_MEM_ERROR;
 	}
 	memcpy(doc->s, body.s, body.len);
 	doc->len= body.len;