Modify

Ticket #57 (closed defect: fixed)

Opened 4 years ago

Last modified 4 years ago

Dico, problème de parse

Reported by: timy_01 Owned by: timy_01
Priority: major Milestone: Version 1.7
Component: modules Version: 1.6.1
Keywords: Cc:

Description

Voilà

<Thaeron> .dico référer
<Syndrome> Définition du mot "referer" : (verbe transitif, intransitif et</FONT> <FONT COLOR=RED>pronominal)
<Syndrome> Rapporter une chose à une autre. Faire rapport. En appeler à. Se référer: se rapporter à.

Attachments

Change History

comment:1 Changed 4 years ago by thaeron

  • Status changed from new to assigned

le bug a été constaté par B-B.

comment:2 Changed 4 years ago by timy_01

  • Owner changed from thaeron to timy_01
  • Status changed from assigned to new

comment:3 Changed 4 years ago by timy_01

  • Status changed from new to assigned
  • Version set to 1.6.1
  • Milestone set to Version 1.7
[23:45:55] <[Leo_01]> $dico référer
[23:45:56] <@Pwet> Définition du mot "referer" : (verbe transitif, intransitif et pronominal)c!
[23:45:56] <@Pwet> Rapporter une chose à une autre. Faire rapport. En appeler à. Se référer: se rapporter à.

Voir ce lien pour plus d'info :  https://cryptofractal.ath.cx/projects/newsyndrome/changeset?new=branches%2Funstable%2Fsrc%2Fmodules%2Fdico.c%40122&old=branches%2Funstable%2Fsrc%2Fmodules%2Fdico.c%40118

comment:4 Changed 4 years ago by thaeron

Correction non validée

La partie :

  strncpy (type, runner, tmplen);
  
  /* Correction du bug dont il est question dans le ticket #57 */
  tmp = str_suppr_mask (type, "<*>");
  free(type);
  type = tmp;
  type[tmplen] = 0;

devrait être :

  strncpy (type, runner, tmplen);
  type[tmplen] = 0;
  
  /* Correction du bug dont il est question dans le ticket #57 */
  tmp = str_suppr_mask (type, "<*>");
  free (type);
  type = tmp;

comment:5 Changed 4 years ago by timy_01

  • Status changed from assigned to closed
  • Resolution set to fixed

Après quelques problèmes, le module est dans le trunk.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.