
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (67)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (9051)
-
Anomalie #4465 : Table principale enlevée de la requête sur double jointure avec mots et auteurs
24 mars 2020Avec
#TITRE
- <span class="CodeRay"><span class="class">SELECT</span> depots.id_depot, depots.titre
- <span class="keyword">FROM</span> spip_depots <span class="keyword">AS</span> <span class="string"><span class="delimiter">`</span><span class="content">depots</span><span class="delimiter">`</span></span>
- <span class="keyword">INNER</span> <span class="keyword">JOIN</span> spip_mots_liens <span class="keyword">AS</span> L1 <span class="keyword">ON</span> ( L1.id_objet = depots.id_depot <span class="keyword">AND</span> L1.objet=<span class="string"><span class="delimiter">'</span><span class="content">depot</span><span class="delimiter">'</span></span>)
- <span class="keyword">WHERE</span> (L1.id_mot = <span class="integer">1</span>)
- <span class="keyword">GROUP</span> <span class="keyword">BY</span> depots.id_depot
- </span>
Sans
#TITRE
- <span class="CodeRay"><span class="class">SELECT</span> L1.id_objet, L1.id_objet <span class="keyword">AS</span> id_depot
- <span class="keyword">FROM</span> spip_mots_liens <span class="keyword">AS</span> <span class="string"><span class="delimiter">`</span><span class="content">L1</span><span class="delimiter">`</span></span>
- <span class="keyword">WHERE</span> (L1.id_mot = <span class="integer">1</span>)
- <span class="keyword">GROUP</span> <span class="keyword">BY</span> L1.id_objet
- </span>
En fait le
AND L1.objet='depot'
qui saute est dans la clause ON de la jointure, qui n’a plus lieu d’être avec l’optimisation. Peut être que ça vient de là son absence. -
Anomalie #4465 : Table principale enlevée de la requête sur double jointure avec mots et auteurs
24 mars 2020Une partie se passe dans
fabrique_jointure()
: le where complémentaire(L1.objet = 'depot')
n’est pas ajouté volontairement et laissé dans la jointure
https://git.spip.net/spip/spip/src/branch/master/ecrire/public/jointures.php#L174L’autre partie doit se situer sur les optimisations dans
calculer_select()
par là :
https://git.spip.net/spip/spip/src/branch/master/ecrire/public/composer.php#L932 -
avcodec/cbs : Fix potential double-free when adding unit fails
18 novembre 2019, par Andreas Rheinhardtavcodec/cbs : Fix potential double-free when adding unit fails
ff_cbs_insert_unit_data() has two modes of operation : It can insert a
unit with a newly created reference to an already existing AVBuffer ; or
it can take a buffer and create an AVBuffer for it. Said buffer will
then become owned by the unit lateron.A potential memleak/double-free exists in the second case, because if
creating the AVBuffer fails, the function immediately returns, but when
it fails lateron, the supplied buffer will be freed. The caller has no
way to distinguish between these two outcomes. The only such caller
(cbs_jpeg_split_fragment() in cbs_jpeg.c) opted for a potential
double-free.This commit changes this by explicitly stating that a non-refcounted
buffer will be freed on error. The aforementioned caller has been
brought in line with this.Fixes CID 1452623.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>