projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fcaeb2d
)
Remove compiler warning for uninitialized variable
author
Olle Johansson
<oej@edvina.net>
Mon, 21 Jan 2008 21:11:58 +0000
(21:11 +0000)
committer
Olle Johansson
<oej@edvina.net>
Mon, 21 Jan 2008 21:11:58 +0000
(21:11 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@99384
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_console.c
patch
|
blob
|
history
diff --git
a/channels/chan_console.c
b/channels/chan_console.c
index
cd6170e
..
c558f5b
100644
(file)
--- a/
channels/chan_console.c
+++ b/
channels/chan_console.c
@@
-1321,7
+1321,7
@@
static void build_device(struct ast_config *cfg, const char *name)
{
struct ast_variable *v;
struct console_pvt *pvt;
- int new;
+ int new = 0;
if ((pvt = find_pvt(name))) {
console_pvt_lock(pvt);