Commit 505d9668 authored by Steve Holme's avatar Steve Holme
Browse files

imap: Don't call imap_atom() when no mailbox specified in LIST command

parent 748ffc77
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -653,8 +653,8 @@ static CURLcode imap_perform_list(struct connectdata *conn)
    result = imap_sendf(conn, "%s%s", imap->custom,
                        imap->custom_params ? imap->custom_params : "");
  else {
    /* Make sure the mailbox is in the correct atom format */
    mailbox = imap_atom(imap->mailbox ? imap->mailbox : "");
    /* Make sure the mailbox is in the correct atom format if necessary */
    mailbox = imap->mailbox ? imap_atom(imap->mailbox) : "";
    if(!mailbox)
      return CURLE_OUT_OF_MEMORY;