mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 18:55:19 +00:00 
			
		
		
		
	Should have passed the string pointer, not the ast_str structure.
(closes issue #13830) Reported by: Marquis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@154023 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -300,7 +300,7 @@ static int acf_odbc_write(struct ast_channel *chan, const char *cmd, char *s, co | |||||||
| 		if (!ast_strlen_zero(query->writehandle[dsn])) { | 		if (!ast_strlen_zero(query->writehandle[dsn])) { | ||||||
| 			obj = ast_odbc_request_obj(query->writehandle[dsn], 0); | 			obj = ast_odbc_request_obj(query->writehandle[dsn], 0); | ||||||
| 			if (obj) | 			if (obj) | ||||||
| 				stmt = ast_odbc_direct_execute(obj, generic_execute, buf); | 				stmt = ast_odbc_direct_execute(obj, generic_execute, buf->str); | ||||||
| 		} | 		} | ||||||
| 		if (stmt) { | 		if (stmt) { | ||||||
| 			status = "SUCCESS"; | 			status = "SUCCESS"; | ||||||
| @@ -316,7 +316,7 @@ static int acf_odbc_write(struct ast_channel *chan, const char *cmd, char *s, co | |||||||
| 			if (!ast_strlen_zero(query->writehandle[dsn])) { | 			if (!ast_strlen_zero(query->writehandle[dsn])) { | ||||||
| 				obj = ast_odbc_request_obj(query->writehandle[dsn], 0); | 				obj = ast_odbc_request_obj(query->writehandle[dsn], 0); | ||||||
| 				if (obj) { | 				if (obj) { | ||||||
| 					stmt = ast_odbc_direct_execute(obj, generic_execute, insertbuf); | 					stmt = ast_odbc_direct_execute(obj, generic_execute, insertbuf->str); | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 			if (stmt) { | 			if (stmt) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user