Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
96789d5e
Commit
96789d5e
authored
Jun 10, 2005
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - autotest
Fix stack overflow in ndb_cpcd on amd64
parent
decf8ed0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ndb/src/common/logger/Logger.cpp
ndb/src/common/logger/Logger.cpp
+2
-2
No files found.
ndb/src/common/logger/Logger.cpp
View file @
96789d5e
...
...
@@ -352,11 +352,11 @@ Logger::log(LoggerLevel logLevel, const char* pMsg, va_list ap) const
{
if
(
m_logLevels
[
LL_ON
]
&&
m_logLevels
[
logLevel
])
{
char
buf
[
MAX_LOG_MESSAGE_SIZE
];
BaseString
::
vsnprintf
(
buf
,
sizeof
(
buf
),
pMsg
,
ap
);
LogHandler
*
pHandler
=
NULL
;
while
(
(
pHandler
=
m_pHandlerList
->
next
())
!=
NULL
)
{
char
buf
[
MAX_LOG_MESSAGE_SIZE
];
BaseString
::
vsnprintf
(
buf
,
sizeof
(
buf
),
pMsg
,
ap
);
pHandler
->
append
(
m_pCategory
,
logLevel
,
buf
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment