taglib: Use nullptr instead of 0 for pointers
authorHugo Beauzée-Luyssen <hugo@beauzee.fr>
Wed, 9 Feb 2022 13:18:11 +0000 (14:18 +0100)
committerSebastian Ramacher <sramacher@debian.org>
Tue, 14 Jan 2025 22:09:47 +0000 (23:09 +0100)
(cherry picked from commit 89e20ea0d87f414f763ce38ff5579aec61f71b42)

Gbp-Pq: Name 0050-taglib-Use-nullptr-instead-of-0-for-pointers.patch

modules/meta_engine/taglib.cpp

index e3e80cc6abef3ced11a81219f8e1d78555623565..e50f559cdcc7113f519df447b67a49798187f97d 100644 (file)
@@ -149,7 +149,7 @@ File *VLCTagLib::ExtResolver<T>::createFile(FileName fileName, bool, AudioProper
             return new T(fileName, false, AudioProperties::Fast);
     }
 
-    return 0;
+    return nullptr;
 }
 
 #ifdef USE_IOSTREAM_RESOLVER