summaryrefslogtreecommitdiff
path: root/dbug
diff options
context:
space:
mode:
authorTor Didriksen <tor.didriksen@oracle.com>2012-09-18 17:32:02 +0200
committerTor Didriksen <tor.didriksen@oracle.com>2012-09-18 17:32:02 +0200
commit88f2746a7a22734d2f2aaa2ac20cc40665e52f6c (patch)
tree2a6b26202a60f99e2c4316ffd53539df5cae2b3a /dbug
parent089ac5d7a1ff4aa417fac0cb7a1a9f40339624df (diff)
downloadmariadb-git-88f2746a7a22734d2f2aaa2ac20cc40665e52f6c.tar.gz
Bug#14542543 FIX BUG #12694872 IN 5.5
Bug#14530242 CRASH / MEMORY CORRUPTION IN FILESORT_BUFFER::GET_RECORD_BUFFER WITH MYISAM This is a backport of Bug#12694872 - VALGRIND: 18,816 BYTES IN 196 BLOCKS ARE DEFINITELY LOST Bug#13340270: assertion table->sort.record_pointers == __null Bug#14536113 CRASH IN CLOSEFRM (TABLE.CC) OR UNPACK (FIELD.H) ON SUBQUERY WITH MYISAM TABLES Also: removed and re-added test files with file-ids from trunk.
Diffstat (limited to 'dbug')
-rw-r--r--dbug/dbug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbug/dbug.c b/dbug/dbug.c
index 2dadf7bb2d5..d55195255d4 100644
--- a/dbug/dbug.c
+++ b/dbug/dbug.c
@@ -1179,7 +1179,7 @@ void _db_return_(uint _line_, struct _db_stack_frame_ *_stack_frame_)
pthread_mutex_lock(&THR_LOCK_dbug);
DoPrefix(cs, _line_);
Indent(cs, cs->level);
- (void) fprintf(cs->stack->out_file, "<%s\n", cs->func);
+ (void) fprintf(cs->stack->out_file, "<%s %u\n", cs->func, _line_);
DbugFlush(cs);
}
}