Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
5383df0c
Commit
5383df0c
authored
Dec 04, 2003
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Guard against invalid p_vcd in dbg_print.
parent
c2251f25
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/access/vcdx/vcdplayer.h
modules/access/vcdx/vcdplayer.h
+2
-2
No files found.
modules/access/vcdx/vcdplayer.h
View file @
5383df0c
/*****************************************************************************
/*****************************************************************************
* Copyright (C) 2003 Rocky Bernstein (for VideoLAN)
* Copyright (C) 2003 Rocky Bernstein (for VideoLAN)
* $Id: vcdplayer.h,v 1.
2 2003/11/09 00:52:32
rocky Exp $
* $Id: vcdplayer.h,v 1.
3 2003/12/04 05:14:39
rocky Exp $
*
*
* Authors: Rocky Bernstein <rocky@panix.com>
* Authors: Rocky Bernstein <rocky@panix.com>
*
*
...
@@ -42,7 +42,7 @@
...
@@ -42,7 +42,7 @@
#define INPUT_DEBUG 1
#define INPUT_DEBUG 1
#if INPUT_DEBUG
#if INPUT_DEBUG
#define dbg_print(mask, s, args...) \
#define dbg_print(mask, s, args...) \
if (p_vcd->i_debug & mask) \
if (p_vcd
&& p_vcd
->i_debug & mask) \
msg_Dbg(p_input, "%s: "s, __func__ , ##args)
msg_Dbg(p_input, "%s: "s, __func__ , ##args)
#else
#else
#define dbg_print(mask, s, args...)
#define dbg_print(mask, s, args...)
...
...
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