home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.0 / 7.0.183 < prev    next >
Encoding:
Internet Message Format  |  2007-01-13  |  4.0 KB

  1. To: vim-dev@vim.org
  2. Subject: patch 7.0.183
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.0.183
  11. Problem:    Crash in ":let" when redirecting to a variable that's being
  12.         displayed. (Thomas Link)
  13. Solution:   When redirecting to a variable only do the assignment when
  14.         stopping redirection to avoid that setting the variable causes a
  15.         freed string to be accessed.
  16. Files:        src/eval.c
  17.  
  18.  
  19. *** ../vim-7.0.182/src/eval.c    Tue Dec  5 10:33:57 2006
  20. --- src/eval.c    Sun Jan 14 14:20:49 2007
  21. ***************
  22. *** 898,903 ****
  23. --- 898,904 ----
  24.   }
  25.   
  26.   static lval_T    *redir_lval = NULL;
  27. + static garray_T redir_ga;    /* only valid when redir_lval is not NULL */
  28.   static char_u    *redir_endp = NULL;
  29.   static char_u    *redir_varname = NULL;
  30.   
  31. ***************
  32. *** 932,937 ****
  33. --- 933,941 ----
  34.       return FAIL;
  35.       }
  36.   
  37. +     /* The output is stored in growarray "redir_ga" until redirection ends. */
  38. +     ga_init2(&redir_ga, (int)sizeof(char), 500);
  39.       /* Parse the variable name (can be a dict or list entry). */
  40.       redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
  41.                                    FNE_CHECK_START);
  42. ***************
  43. *** 974,1015 ****
  44.   }
  45.   
  46.   /*
  47. !  * Append "value[len]" to the variable set by var_redir_start().
  48.    */
  49.       void
  50. ! var_redir_str(value, len)
  51.       char_u    *value;
  52. !     int        len;
  53.   {
  54. !     char_u    *val;
  55. !     typval_T    tv;
  56. !     int        save_emsg;
  57. !     int        err;
  58.   
  59.       if (redir_lval == NULL)
  60.       return;
  61.   
  62. !     if (len == -1)
  63. !     /* Append the entire string */
  64. !     val = vim_strsave(value);
  65. !     else
  66. !     /* Append only the specified number of characters */
  67. !     val = vim_strnsave(value, len);
  68. !     if (val == NULL)
  69. !     return;
  70. !     tv.v_type = VAR_STRING;
  71. !     tv.vval.v_string = val;
  72.   
  73. !     save_emsg = did_emsg;
  74. !     did_emsg = FALSE;
  75. !     set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
  76. !     err = did_emsg;
  77. !     did_emsg |= save_emsg;
  78. !     if (err)
  79.       var_redir_stop();
  80. -     vim_free(tv.vval.v_string);
  81.   }
  82.   
  83.   /*
  84. --- 978,1013 ----
  85.   }
  86.   
  87.   /*
  88. !  * Append "value[value_len]" to the variable set by var_redir_start().
  89. !  * The actual appending is postponed until redirection ends, because the value
  90. !  * appended may in fact be the string we write to, changing it may cause freed
  91. !  * memory to be used:
  92. !  *   :redir => foo
  93. !  *   :let foo
  94. !  *   :redir END
  95.    */
  96.       void
  97. ! var_redir_str(value, value_len)
  98.       char_u    *value;
  99. !     int        value_len;
  100.   {
  101. !     size_t    len;
  102.   
  103.       if (redir_lval == NULL)
  104.       return;
  105.   
  106. !     if (value_len == -1)
  107. !     len = STRLEN(value);    /* Append the entire string */
  108. !     else
  109. !     len = value_len;    /* Append only "value_len" characters */
  110.   
  111. !     if (ga_grow(&redir_ga, (int)len) == OK)
  112. !     {
  113. !     mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
  114. !     redir_ga.ga_len += len;
  115. !     }
  116. !     else
  117.       var_redir_stop();
  118.   }
  119.   
  120.   /*
  121. ***************
  122. *** 1018,1025 ****
  123. --- 1016,1034 ----
  124.       void
  125.   var_redir_stop()
  126.   {
  127. +     typval_T    tv;
  128.       if (redir_lval != NULL)
  129.       {
  130. +     /* Append the trailing NUL. */
  131. +     ga_append(&redir_ga, NUL);
  132. +     /* Assign the text to the variable. */
  133. +     tv.v_type = VAR_STRING;
  134. +     tv.vval.v_string = redir_ga.ga_data;
  135. +     set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
  136. +     vim_free(tv.vval.v_string);
  137.       clear_lval(redir_lval);
  138.       vim_free(redir_lval);
  139.       redir_lval = NULL;
  140. *** ../vim-7.0.182/src/version.c    Tue Jan  9 20:29:55 2007
  141. --- src/version.c    Sun Jan 14 15:23:23 2007
  142. ***************
  143. *** 668,669 ****
  144. --- 668,671 ----
  145.   {   /* Add new patch number below this line */
  146. + /**/
  147. +     183,
  148.   /**/
  149.  
  150. -- 
  151. How To Keep A Healthy Level Of Insanity:
  152. 16. Have your coworkers address you by your wrestling name, Rock Hard Kim.
  153.  
  154.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  155. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  156. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  157.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  158.