Don't copy on NULL.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130234 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2008-07-11 19:56:34 +00:00
parent bead8cd6f0
commit caf226d50e

View File

@@ -741,9 +741,11 @@ struct odbc_obj *ast_odbc_request_obj(const char *name, int check)
odbc_obj_connect(obj);
#if DEBUG_THREADS
ast_copy_string(obj->file, file, sizeof(obj->file));
ast_copy_string(obj->function, function, sizeof(obj->function));
obj->lineno = lineno;
if (obj) {
ast_copy_string(obj->file, file, sizeof(obj->file));
ast_copy_string(obj->function, function, sizeof(obj->function));
obj->lineno = lineno;
}
#endif
return obj;