diff options
| author | Tatsuya Kinoshita <tats@debian.org> | 2013-08-04 02:55:09 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2013-08-04 02:55:09 +0000 | 
| commit | 62aafb2e9b8bea445e0006a0555b8f39bcc2809b (patch) | |
| tree | 182318ed94f7a6b5875433f04f45f0c105ab0a01 | |
| parent | Merge branch 'feature/siteconf' (diff) | |
| parent | Fix potentially segfault of execdict() (diff) | |
| download | w3m-62aafb2e9b8bea445e0006a0555b8f39bcc2809b.tar.gz w3m-62aafb2e9b8bea445e0006a0555b8f39bcc2809b.zip | |
Merge branch 'bug/execdict'
| -rw-r--r-- | main.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -5683,7 +5683,7 @@ execdict(char *word)  	disp_message("Execution failed", TRUE);  	return;      } -    else { +    else if (buf != NO_BUFFER) {  	buf->filename = w;  	buf->buffername = Sprintf("%s %s", DICTBUFFERNAME, word)->ptr;  	if (buf->type == NULL) | 
