use NULL instead of 0 for ptr
Change-Id: Id203f1e2cda13476e62784caa8897a4b94e797da
This commit is contained in:
parent
78510a09a4
commit
c35501d2c3
@ -1614,7 +1614,7 @@ bool Cues::Find(
|
|||||||
if (time_ns <= pCP->GetTime(m_pSegment))
|
if (time_ns <= pCP->GetTime(m_pSegment))
|
||||||
{
|
{
|
||||||
pTP = pCP->Find(pTrack);
|
pTP = pCP->Find(pTrack);
|
||||||
return (pTP != 0);
|
return (pTP != NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (i < j)
|
while (i < j)
|
||||||
@ -1645,7 +1645,7 @@ bool Cues::Find(
|
|||||||
assert(pCP->GetTime(m_pSegment) <= time_ns);
|
assert(pCP->GetTime(m_pSegment) <= time_ns);
|
||||||
|
|
||||||
pTP = pCP->Find(pTrack);
|
pTP = pCP->Find(pTrack);
|
||||||
return (pTP != 0);
|
return (pTP != NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1697,7 +1697,7 @@ bool Cues::FindNext(
|
|||||||
assert(pCP->GetTime(m_pSegment) > time_ns);
|
assert(pCP->GetTime(m_pSegment) > time_ns);
|
||||||
|
|
||||||
pTP = pCP->Find(pTrack);
|
pTP = pCP->Find(pTrack);
|
||||||
return (pTP != 0);
|
return (pTP != NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user